package com.thhy.mobile.modules.biz.pipeinfo.entity;
|
|
import com.thhy.general.annotations.Excel;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
public class PipeListVo implements Serializable {
|
|
private String pipeId;
|
|
@Excel(title = "序号",sort = 1,seq = true)
|
private String seq;
|
|
@Excel(title = "环号",sort = 2)
|
private String ringNum;
|
|
@Excel(title = "管片编号",sort = 3)
|
private String PipeNum;
|
|
@Excel(title = "转向",sort = 4)
|
private String turnName;
|
|
@Excel(title = "配筋",sort = 5)
|
private String reinforcementName;
|
|
@Excel(title = "注浆孔",sort = 6)
|
private String groutingHolesName;
|
|
@Excel(title = "块号",sort = 7)
|
private String blockNumName;
|
|
private String sizeName;
|
|
@Excel(title = "模具型号",sort = 8)
|
private String mouldNum;
|
|
@Excel(title = "入模时间",sort=9)
|
private String intoModTime;
|
|
@Excel(title = "浇筑时间",sort=10)
|
private String pouringTime;
|
|
@Excel(title = "质检时间",sort=11,patter = "yyyy-MM-dd HH:mm:ss")
|
private Date checkTime;
|
|
@Excel(title = "生产班组",sort=12)
|
private String groupName;
|
|
@Excel(title = "项目",sort=13)
|
private String proName;
|
|
private Integer checkResult;
|
|
@Excel(title = "质量标注",sort = 14,dict = true)
|
public String checkResultStr;
|
|
//检查人
|
private String checkName;
|
//模具id
|
private String modId;
|
//钢筋笼号
|
private String produceNumber;
|
//入模人员
|
private String intoModUser;
|
public String getCheckResultStr() {
|
return checkResult==1?"合格":checkResult==2?"不合格":"报废";
|
}
|
|
private ModIdlThing modIdlThing;
|
|
private SteelProduceThing steelProduceThing;
|
|
}
|