郑永安
2023-06-19 59e91a4e9ddaf23cebb12993c774aa899ab22d16
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
package com.gk.firework.Domain.Vo;
 
import java.util.Date;
 
public class TransportArrivalSum {
 
    //运输证号
    private String certificatecode;
    //总数
    private Integer arrivalSum;
    //企业
    private String createbyname;
 
    private Date createtime;
 
    public String getCertificatecode() {
        return certificatecode;
    }
 
    public void setCertificatecode(String certificatecode) {
        this.certificatecode = certificatecode;
    }
 
    public Integer getArrivalSum() {
        return arrivalSum;
    }
 
    public void setArrivalSum(Integer arrivalSum) {
        this.arrivalSum = arrivalSum;
    }
 
    public String getCreatebyname() {
        return createbyname;
    }
 
    public void setCreatebyname(String createbyname) {
        this.createbyname = createbyname;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
}