package com.thhy.mobile.modules.biz.steelcheckrecord.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-06 10:49:33
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class SteelCheckRecord implements Serializable {
|
|
|
/**
|
* 检查失败原因选择
|
*/
|
|
|
private String checkFaildReason;
|
|
|
@Idkey
|
private String checkId;
|
|
|
/**
|
* 1s2f3b
|
*/
|
|
|
private Integer checkResult;
|
|
/**
|
* 质检时间
|
*/
|
|
|
private Date createTime;
|
|
/**
|
* 质检人
|
*/
|
|
|
private String createUser;
|
|
/**
|
* 不合格说明
|
*/
|
|
|
private String remark;
|
|
/**
|
* 钢筋笼唯一ID
|
*/
|
|
|
private String steelProduceId;
|
|
/**
|
* 钢筋笼唯一编号
|
*/
|
|
|
private String steelProduceNum;
|
}
|