hdy
3 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
9f7aa7 1 package com.billion.main.om.domain;
2
3 import com.billion.common.annotation.Excel;
4 import com.billion.common.core.domain.BaseEntity;
5 import com.fasterxml.jackson.annotation.JsonFormat;
6 import lombok.Data;
7
8 import java.util.Date;
9
10 /**
11  * 订单排产对象 om_order_scheduling
12  * 
13  * @author Billion
14  * @date 2024-11-20
15  */
16 @Data
17 public class OmOrderScheduling extends BaseEntity
18 {
19     private static final long serialVersionUID = 1L;
20
21     /** ID */
22     private Long id;
23
24     /** 工单编号 */
25     @Excel(name = "工单编号")
26     private String workOrderNo;
27
28     /** 总成序列号 */
29     @Excel(name = "总成序列号")
30     private String sfcCode;
31
32     /** 产品编码 */
33     @Excel(name = "产品编码")
34     private String productCode;
35
36     /** 上线时间 */
37     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
38     @Excel(name = "上线时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
39     private Date onlineTime;
40
41     /** 下线时间 */
42     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
43     @Excel(name = "下线时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
44     private Date offlineTime;
45
46     /** 质量状态(1合格,2不合格) */
226f41 47     @Excel(name = "质量状态(1合格,2不合格)", readConverterExp = "1=合格,2=不合格")
9f7aa7 48     private String qualityStatus;
49
50     /** 状态(1未开始,2执行中,3已完成) */
226f41 51     @Excel(name = "状态(1未开始,2执行中,3已完成)", readConverterExp = "1=未开始,2=执行中,3=已完成")
9f7aa7 52     private String status;
53
54     /** 备注 */
55     @Excel(name = "备注")
56     private String remarks;
57
b9df2f 58     /** 当前订单已上线数量 */
H 59     @Excel(name = "当前订单已上线数量")
51eb31 60     private String nowQty;
H 61
62     /** 创建者 */
63     private String createBy;
64
65     /** 创建时间 */
66     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
67     private Date createTime;
68
69     /** 更新者 */
70     private String updateBy;
71
72     /** 更新时间 */
73     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
74     private Date updateTime;
b9df2f 75
9f7aa7 76 }