新火炬后端单体项目初始化代码
zhangherong
昨天 182c04e399f5db26406234767f7ef34b5adc0015
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package org.jeecg.modules.cms.vo;
 
import org.jeecg.modules.cms.entity.CuttingInboundDetail;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
import java.util.List;
 
public class CuttingInboundExportVo {
    /** 主键 */
    @Excel(name = "入库单", width = 15)
    private String id;
 
    /** 入库人 */
    @Excel(name = "入库人", width = 15,dictTable = "sys_user",dicCode = "id",dicText = "realname")
    private String receiver;
 
    /** 入库时间 */
    @Excel(name = "入库时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    private java.util.Date receiveTime;
 
    /** 入库说明 */
    @Excel(name = "入库说明", width = 15)
    private String receiveComment;
 
    /** 确认人 */
    @Excel(name = "确认人", width = 15,dictTable = "sys_user",dicCode = "id",dicText = "realname")
    private String confirmer;
 
    /** 确认时间 */
    @Excel(name = "确认时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    private java.util.Date confirmTime;
 
    /** 确认意见 */
    @Excel(name = "确认意见", width = 15)
    private String confirmComment;
 
    /** 订单状态 */
    @Excel(name = "订单状态", width = 15)
    private String orderStatus;
 
    // 明细集合
    @ExcelCollection(name = "入库明细")
    private List<CuttingInboundDetail> detailList;
 
    // getter和setter方法...
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getReceiver() {
        return receiver;
    }
 
    public void setReceiver(String receiver) {
        this.receiver = receiver;
    }
 
    public java.util.Date getReceiveTime() {
        return receiveTime;
    }
 
    public void setReceiveTime(java.util.Date receiveTime) {
        this.receiveTime = receiveTime;
    }
 
    public String getReceiveComment() {
        return receiveComment;
    }
 
    public void setReceiveComment(String receiveComment) {
        this.receiveComment = receiveComment;
    }
 
    public String getConfirmer() {
        return confirmer;
    }
 
    public void setConfirmer(String confirmer) {
        this.confirmer = confirmer;
    }
 
    public java.util.Date getConfirmTime() {
        return confirmTime;
    }
 
    public void setConfirmTime(java.util.Date confirmTime) {
        this.confirmTime = confirmTime;
    }
 
    public String getConfirmComment() {
        return confirmComment;
    }
 
    public void setConfirmComment(String confirmComment) {
        this.confirmComment = confirmComment;
    }
 
    public String getOrderStatus() {
        return orderStatus;
    }
 
    public void setOrderStatus(String orderStatus) {
        this.orderStatus = orderStatus;
    }
 
    public List<CuttingInboundDetail> getDetailList() {
        return detailList;
    }
 
    public void setDetailList(List<CuttingInboundDetail> detailList) {
        this.detailList = detailList;
    }
}