package com.thhy.mobile.modules.biz.mouldcheck.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-08 11:20:53
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class MouldCheckRecord implements Serializable {
|
|
|
/**
|
* 匹配人
|
*/
|
|
|
private String createUser;
|
|
|
@Idkey
|
private String id;
|
|
|
/**
|
* 1Y0N
|
*/
|
|
|
private Integer isUse;
|
|
/**
|
* 1成功2失败
|
*/
|
|
|
private Integer matchResult;
|
|
|
|
private Date matchTime;
|
|
/**
|
* 模具质检ID
|
*/
|
|
|
private String modCheckId;
|
|
/**
|
* 钢筋笼编号
|
*/
|
|
|
private String steelProNum;
|
}
|