吴健
2024-11-22 226f411c28e7d16660c997fcc382a2218d1d9ca7
提交 | 用户 | 时间
9f7aa7 1 package com.billion.main.om.domain;
2
3 import com.billion.common.annotation.Excel;
4 import com.billion.main.common.BaseEntity;
5 import com.fasterxml.jackson.annotation.JsonFormat;
6 import lombok.Data;
7
8 import java.util.Date;
9
10 /**
11  * 生产工单对象 om_production_order_info
12  * 
13  * @author Billion
14  * @date 2024-11-20
15  */
16 @Data
17 public class OmProductionOrderInfo extends BaseEntity
18 {
19     /** 工单编号 */
20     @Excel(name = "工单编号")
21     private String workOrderNo;
22
23     /** 订单编号 */
24     @Excel(name = "订单编号")
25     private String salesOrderCode;
26
27     /** 产品编号 */
28     @Excel(name = "产品编号")
29     private String productCode;
30
31     /** 产线编号 */
32     @Excel(name = "产线编号")
33     private String lineCode;
34
35     /** 计划数量 */
36     @Excel(name = "计划数量")
37     private Long planQty;
38
39     /** 计划开始时间 */
40     @JsonFormat(pattern = "yyyy-MM-dd")
41     @Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd")
42     private Date planStartTime;
43
44     /** 计划结束时间 */
45     @JsonFormat(pattern = "yyyy-MM-dd")
46     @Excel(name = "计划结束时间", width = 30, dateFormat = "yyyy-MM-dd")
47     private Date planEndTime;
48
49     /** 工单状态(1未开始2生产中3已完成4已关闭) */
226f41 50     @Excel(name = "工单状态", readConverterExp = "1=未开始,2=生产中,3=已完成,4=已关闭")
9f7aa7 51     private String orderStatus;
52
53     /** 备注 */
54     @Excel(name = "备注")
55     private String remarks;
56
57 }