cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
package cn.ksource.core.doc;
 
import java.util.ArrayList;
import java.util.List;
 
public class ContractMsg {
 
    private HeadMsg msg = new HeadMsg();
    
    private List<GoodsMsg> goods = new ArrayList<GoodsMsg>();
    
    private PayMsg payMsg = new PayMsg();
    
    //总价大写
    private String total;
 
    public HeadMsg getMsg() {
        return msg;
    }
 
    public void setMsg(HeadMsg msg) {
        this.msg = msg;
    }
 
    public List<GoodsMsg> getGoods() {
        return goods;
    }
 
    public void setGoods(List<GoodsMsg> goods) {
        this.goods = goods;
    }
 
    public PayMsg getPayMsg() {
        return payMsg;
    }
 
    public void setPayMsg(PayMsg payMsg) {
        this.payMsg = payMsg;
    }
 
    public String getTotal() {
        return total;
    }
 
    public void setTotal(String total) {
        this.total = total;
    }
    
    
    
}