package com.thhy.engineering.modules.biz.mould.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
public class MouldListVo implements Serializable {
|
|
@Idkey
|
private String mouldId;
|
|
private String proId;
|
|
private String proName;
|
|
|
/**
|
* 模具编号
|
*/
|
|
|
private String mouldNum;
|
|
/**
|
* 模具编码
|
*/
|
|
|
private String mouldCode;
|
|
/**
|
* 模具类型 字典表
|
*/
|
|
|
private String mouldType;
|
|
private String mouldTypeName;
|
|
/**
|
* 模具尺寸 字典
|
*/
|
|
|
private String mouldSize;
|
|
private String mouldSizeName;
|
|
/**
|
* 模具转向 字典
|
*/
|
|
|
private String mouldTurn;
|
|
private String mouldTurnName;
|
|
/**
|
* 生产厂家
|
*/
|
|
|
private String supplierId;
|
|
private String supplierName;
|
|
/**
|
* 最大循环次数
|
*/
|
|
|
private Integer maxCycleTime;
|
|
/**
|
* 生产日期
|
*/
|
|
|
private Date productDate;
|
|
/**
|
* 进厂日期
|
*/
|
|
|
private Date comeFactoryTime;
|
|
/**
|
* 当前循环次数
|
*/
|
|
|
private Integer currentCycleTime;
|
|
/**
|
* 1使用中 2停用
|
*/
|
|
|
private Integer status;
|
|
private String groutingHoles;
|
private String groutingHolesName;
|
|
private String mouldMn;
|
|
private Integer warningValue;
|
private Integer warningDay;
|
|
}
|