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 10:00:18
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class MouldCheck implements Serializable {
|
|
|
|
|
private Date checkTime;
|
|
|
|
private String checkUser;
|
|
/**
|
* 1Y0N
|
*/
|
|
|
private Integer isUse;
|
|
|
@Idkey
|
private String modCheckId;
|
|
|
/**
|
* 模具ID
|
*/
|
|
|
private String modId;
|
|
/**
|
* 1未出模2已出模
|
*/
|
|
|
private Integer status;
|
|
private Integer matchStatus;
|
|
public MouldCheck() {
|
}
|
|
public MouldCheck(String modId,String checkUser) {
|
this.checkUser = checkUser;
|
this.modId = modId;
|
}
|
|
public MouldCheck(String modCheckId, Integer matchStatus) {
|
this.modCheckId = modCheckId;
|
this.matchStatus = matchStatus;
|
}
|
}
|