|
@@ -0,0 +1,65 @@
|
|
|
+package com.iamberry.rst.core.tools;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+
|
|
|
+ * Created by Administrator on 2018/5/30.
|
|
|
+ */
|
|
|
+public class LogisticsInfo implements Serializable {
|
|
|
+ private static final long serialVersionUID = -188450183704153868L;
|
|
|
+ private Integer logisticsId;
|
|
|
+ private String logisticsName;
|
|
|
+ private String logisticsRstCode;
|
|
|
+ private String logisticsEfastCode;
|
|
|
+ private String logisticsOnehundredCode;
|
|
|
+ private Date createDate;
|
|
|
+
|
|
|
+ public Integer getLogisticsId() {
|
|
|
+ return logisticsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsId(Integer logisticsId) {
|
|
|
+ this.logisticsId = logisticsId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogisticsName() {
|
|
|
+ return logisticsName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsName(String logisticsName) {
|
|
|
+ this.logisticsName = logisticsName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogisticsRstCode() {
|
|
|
+ return logisticsRstCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsRstCode(String logisticsRstCode) {
|
|
|
+ this.logisticsRstCode = logisticsRstCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogisticsEfastCode() {
|
|
|
+ return logisticsEfastCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsEfastCode(String logisticsEfastCode) {
|
|
|
+ this.logisticsEfastCode = logisticsEfastCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getLogisticsOnehundredCode() {
|
|
|
+ return logisticsOnehundredCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLogisticsOnehundredCode(String logisticsOnehundredCode) {
|
|
|
+ this.logisticsOnehundredCode = logisticsOnehundredCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getCreateDate() {
|
|
|
+ return createDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateDate(Date createDate) {
|
|
|
+ this.createDate = createDate;
|
|
|
+ }
|
|
|
+}
|