吴健
2024-11-22 9f7aa7e1624d35540f1a339e87f1fe87f6c86628
提交 | 用户 | 时间
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不合格) */
47     @Excel(name = "质量状态(1合格,2不合格)")
48     private String qualityStatus;
49
50     /** 状态(1未开始,2执行中,3已完成) */
51     @Excel(name = "状态(1未开始,2执行中,3已完成)")
52     private String status;
53
54     /** 备注 */
55     @Excel(name = "备注")
56     private String remarks;
57
58 }