|
|
|
@ -35,63 +35,63 @@ public class ProductRecord implements Serializable { |
|
|
|
|
/**主键*/ |
|
|
|
|
@TableId(type = IdType.ASSIGN_ID) |
|
|
|
|
@ApiModelProperty(value = "主键") |
|
|
|
|
private String id; |
|
|
|
|
private java.lang.String id; |
|
|
|
|
/**创建人*/ |
|
|
|
|
@ApiModelProperty(value = "创建人") |
|
|
|
|
private String createBy; |
|
|
|
|
private java.lang.String createBy; |
|
|
|
|
/**创建日期*/ |
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "创建日期") |
|
|
|
|
private Date createTime; |
|
|
|
|
private java.util.Date createTime; |
|
|
|
|
/**更新人*/ |
|
|
|
|
@ApiModelProperty(value = "更新人") |
|
|
|
|
private String updateBy; |
|
|
|
|
private java.lang.String updateBy; |
|
|
|
|
/**更新日期*/ |
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "更新日期") |
|
|
|
|
private Date updateTime; |
|
|
|
|
private java.util.Date updateTime; |
|
|
|
|
/**所属部门*/ |
|
|
|
|
@ApiModelProperty(value = "所属部门") |
|
|
|
|
private String sysOrgCode; |
|
|
|
|
private java.lang.String sysOrgCode; |
|
|
|
|
/**工位*/ |
|
|
|
|
@Excel(name = "工位", width = 15, dictTable = "station", dicText = "station_name", dicCode = "id") |
|
|
|
|
@Dict(dictTable = "station", dicText = "station_name", dicCode = "id") |
|
|
|
|
@ApiModelProperty(value = "工位") |
|
|
|
|
private String stationId; |
|
|
|
|
private java.lang.String stationId; |
|
|
|
|
/**工位*/ |
|
|
|
|
@Excel(name = "工位", width = 15) |
|
|
|
|
@ApiModelProperty(value = "工位") |
|
|
|
|
private String stationName; |
|
|
|
|
private java.lang.String stationName; |
|
|
|
|
/**工单编号*/ |
|
|
|
|
@Excel(name = "工单编号", width = 15, dictTable = "findgdbh", dicText = "order_id,order_code", dicCode = "id,orders_num") |
|
|
|
|
@Dict(dictTable = "findgdbh", dicText = "order_id,order_code", dicCode = "id,orders_num") |
|
|
|
|
@Excel(name = "工单编号", width = 15) |
|
|
|
|
@ApiModelProperty(value = "工单编号") |
|
|
|
|
private String orderCode; |
|
|
|
|
private java.lang.String orderCode; |
|
|
|
|
/**工单编号*/ |
|
|
|
|
@Excel(name = "工单编号", width = 15) |
|
|
|
|
@Excel(name = "工单编号", width = 15, dictTable = "work_order", dicText = "product_code", dicCode = "id") |
|
|
|
|
@Dict(dictTable = "work_order", dicText = "product_code", dicCode = "id") |
|
|
|
|
@ApiModelProperty(value = "工单编号") |
|
|
|
|
private String orderId; |
|
|
|
|
private java.lang.String orderId; |
|
|
|
|
/**生产开始时间*/ |
|
|
|
|
@Excel(name = "生产开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "生产开始时间") |
|
|
|
|
private Date workTime; |
|
|
|
|
private java.util.Date workTime; |
|
|
|
|
/**生产结束时间*/ |
|
|
|
|
@Excel(name = "生产结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
|
|
|
|
@ApiModelProperty(value = "生产结束时间") |
|
|
|
|
private Date offTime; |
|
|
|
|
private java.util.Date offTime; |
|
|
|
|
/**时长*/ |
|
|
|
|
@Excel(name = "时长", width = 15) |
|
|
|
|
@ApiModelProperty(value = "时长") |
|
|
|
|
private String duration; |
|
|
|
|
private java.lang.String duration; |
|
|
|
|
/**状态*/ |
|
|
|
|
@Excel(name = "状态", width = 15, dicCode = "cgqzt") |
|
|
|
|
@Dict(dicCode = "cgqzt") |
|
|
|
|
@ApiModelProperty(value = "状态") |
|
|
|
|
private String status; |
|
|
|
|
private java.lang.String status; |
|
|
|
|
} |
|
|
|
|