package com.thhy.materials.modules.biz.rebarprint.entity.dto;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
public class ProduceExportDto implements Serializable {
|
/**
|
* 钢筋编号
|
*/
|
private String produceNumber;
|
/**
|
* 项目名称
|
*/
|
private String proName;
|
//尺寸
|
private String sizeName;
|
//配筋
|
private String reinforcementName;
|
//块号
|
private String blockName;
|
//班组
|
private String groupName;
|
/**
|
* 质检时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private String qualityTime;
|
//制作人
|
private String realName;
|
//质检人
|
private String qualityUserName;
|
|
|
/**
|
* 是否合格
|
*/
|
private String isQualified;
|
/**
|
* 是否入模
|
*/
|
private String isModel;
|
//打印时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private String printTime;
|
|
|
}
|