package com.thhy.mobile.modules.biz.checkreason.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-06 10:02:37
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class CheckReason implements Serializable {
|
|
|
|
@Idkey
|
private String id;
|
|
|
/**
|
* 原因种类
|
*/
|
|
|
private String reasonKind;
|
|
/**
|
* 原因名称
|
*/
|
|
|
private String reasonName;
|
|
/**
|
* 1钢筋笼2管片
|
*/
|
|
|
private Integer reasonType;
|
|
|
|
private Integer sort;
|
}
|