package com.thhy.mobile.modules.biz.pipeinfo.entity;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
@Data
|
public class ModIdlThing implements Serializable {
|
//模具id
|
private String mouldId;
|
//模具编号
|
private String mouldNum;
|
//模具编码
|
private String mouldCode;
|
//模具类型 字典表
|
private String mouldType;
|
//模具尺寸 字典
|
private String mouldSize;
|
//模具转向 字典
|
private String mouldTurn;
|
//MN号
|
private String mouldMn;
|
//当前循环次数
|
private Integer currentCycleTime;
|
|
|
|
}
|