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;
|
}
|
}
|