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 09:46:35
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class Mould implements Serializable {
|
|
|
/**
|
* 进厂日期
|
*/
|
|
|
private Date comeFactoryTime;
|
|
|
|
private Date createTime;
|
|
|
|
private String createUser;
|
|
/**
|
* 当前循环次数
|
*/
|
|
|
private Integer currentCycleTime;
|
|
|
|
private Integer isUse;
|
|
/**
|
* 最大循环次数
|
*/
|
|
|
private Integer maxCycleTime;
|
|
/**
|
* 模具编码
|
*/
|
|
|
private String mouldCode;
|
|
/**
|
* 主键
|
*/
|
|
@Idkey
|
private String mouldId;
|
|
|
/**
|
* 模具编号
|
*/
|
|
|
private String mouldNum;
|
|
/**
|
* 模具尺寸 字典
|
*/
|
|
|
private String mouldSize;
|
|
/**
|
* 模具转向 字典
|
*/
|
|
|
private String mouldTurn;
|
|
/**
|
* 模具类型 字典表
|
*/
|
|
|
private String mouldType;
|
|
|
|
private String proId;
|
|
/**
|
* 生产日期
|
*/
|
|
|
private Date productDate;
|
|
/**
|
* 1使用中 2停用
|
*/
|
|
|
private Integer status;
|
|
/**
|
* 生产厂家
|
*/
|
|
|
private String supplierId;
|
|
|
|
private Date updateTime;
|
|
|
|
private String updateUser;
|
|
private String groutingHoles;
|
|
private Integer free;
|
}
|