925 lines
25 KiB
Java
925 lines
25 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author hlh
|
|
* @version 1.0.0
|
|
* @date 2021/7/31 17:47
|
|
* @description:
|
|
*/
|
|
public class HuoYuanDelBean {
|
|
|
|
|
|
private int res;
|
|
private int code;
|
|
private boolean success;
|
|
private String msg;
|
|
private DataDTO data;
|
|
|
|
public int getRes() {
|
|
return res;
|
|
}
|
|
|
|
public void setRes(int res) {
|
|
this.res = res;
|
|
}
|
|
|
|
public int getCode() {
|
|
return code;
|
|
}
|
|
|
|
public void setCode(int code) {
|
|
this.code = code;
|
|
}
|
|
|
|
public boolean isSuccess() {
|
|
return success;
|
|
}
|
|
|
|
public void setSuccess(boolean success) {
|
|
this.success = success;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg == null ? "" : msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
|
|
public DataDTO getData() {
|
|
return data;
|
|
}
|
|
|
|
public void setData(DataDTO data) {
|
|
this.data = data;
|
|
}
|
|
|
|
public static class DataDTO {
|
|
private int id;
|
|
private Object waybillId;
|
|
private String orderNum;
|
|
private int shipperId;
|
|
private String loadingName;
|
|
private String loadingPhone;
|
|
private String loadingProvinceCityArea;
|
|
private String loadingAddress;
|
|
private String loadingDeadline;
|
|
private String receiverName;
|
|
private String receiverPhone;
|
|
private String receiverProvinceCityArea;
|
|
private String receiverAddress;
|
|
private String receiverDeadline;
|
|
private int allowSplitting;
|
|
private String goodsValue;
|
|
private int isInsure;
|
|
private String insureAmount;
|
|
private String effectiveTime;
|
|
private String distance;
|
|
private int vehicleType;
|
|
private String vehicleTypeName;
|
|
private int vehicleLength;
|
|
private String vehicleLengthName;
|
|
private String namedDrivers;
|
|
private String requirement;
|
|
private String totalFreight;
|
|
private String failedReason;
|
|
private List<SendInfoDTO> sendInfo;
|
|
private List<PutInfoDTO> putInfo;
|
|
private String sendPutString;
|
|
private String report;
|
|
private String contractTemplateUrl;
|
|
private int status;
|
|
private Object statusOver;
|
|
private Object contactName;
|
|
private Object contactPhone;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Object getWaybillId() {
|
|
return waybillId;
|
|
}
|
|
|
|
public void setWaybillId(Object waybillId) {
|
|
this.waybillId = waybillId;
|
|
}
|
|
|
|
public String getOrderNum() {
|
|
return orderNum == null ? "" : orderNum;
|
|
}
|
|
|
|
public void setOrderNum(String orderNum) {
|
|
this.orderNum = orderNum;
|
|
}
|
|
|
|
public int getShipperId() {
|
|
return shipperId;
|
|
}
|
|
|
|
public void setShipperId(int shipperId) {
|
|
this.shipperId = shipperId;
|
|
}
|
|
|
|
public String getLoadingName() {
|
|
return loadingName == null ? "" : loadingName;
|
|
}
|
|
|
|
public void setLoadingName(String loadingName) {
|
|
this.loadingName = loadingName;
|
|
}
|
|
|
|
public String getLoadingPhone() {
|
|
return loadingPhone == null ? "" : loadingPhone;
|
|
}
|
|
|
|
public void setLoadingPhone(String loadingPhone) {
|
|
this.loadingPhone = loadingPhone;
|
|
}
|
|
|
|
public String getLoadingProvinceCityArea() {
|
|
return loadingProvinceCityArea == null ? "" : loadingProvinceCityArea;
|
|
}
|
|
|
|
public void setLoadingProvinceCityArea(String loadingProvinceCityArea) {
|
|
this.loadingProvinceCityArea = loadingProvinceCityArea;
|
|
}
|
|
|
|
public String getLoadingAddress() {
|
|
return loadingAddress == null ? "" : loadingAddress;
|
|
}
|
|
|
|
public void setLoadingAddress(String loadingAddress) {
|
|
this.loadingAddress = loadingAddress;
|
|
}
|
|
|
|
public String getLoadingDeadline() {
|
|
return loadingDeadline == null ? "" : loadingDeadline;
|
|
}
|
|
|
|
public void setLoadingDeadline(String loadingDeadline) {
|
|
this.loadingDeadline = loadingDeadline;
|
|
}
|
|
|
|
public String getReceiverName() {
|
|
return receiverName == null ? "" : receiverName;
|
|
}
|
|
|
|
public void setReceiverName(String receiverName) {
|
|
this.receiverName = receiverName;
|
|
}
|
|
|
|
public String getReceiverPhone() {
|
|
return receiverPhone == null ? "" : receiverPhone;
|
|
}
|
|
|
|
public void setReceiverPhone(String receiverPhone) {
|
|
this.receiverPhone = receiverPhone;
|
|
}
|
|
|
|
public String getReceiverProvinceCityArea() {
|
|
return receiverProvinceCityArea == null ? "" : receiverProvinceCityArea;
|
|
}
|
|
|
|
public void setReceiverProvinceCityArea(String receiverProvinceCityArea) {
|
|
this.receiverProvinceCityArea = receiverProvinceCityArea;
|
|
}
|
|
|
|
public String getReceiverAddress() {
|
|
return receiverAddress == null ? "" : receiverAddress;
|
|
}
|
|
|
|
public void setReceiverAddress(String receiverAddress) {
|
|
this.receiverAddress = receiverAddress;
|
|
}
|
|
|
|
public String getReceiverDeadline() {
|
|
return receiverDeadline == null ? "" : receiverDeadline;
|
|
}
|
|
|
|
public void setReceiverDeadline(String receiverDeadline) {
|
|
this.receiverDeadline = receiverDeadline;
|
|
}
|
|
|
|
public int getAllowSplitting() {
|
|
return allowSplitting;
|
|
}
|
|
|
|
public void setAllowSplitting(int allowSplitting) {
|
|
this.allowSplitting = allowSplitting;
|
|
}
|
|
|
|
public String getGoodsValue() {
|
|
return goodsValue == null ? "" : goodsValue;
|
|
}
|
|
|
|
public void setGoodsValue(String goodsValue) {
|
|
this.goodsValue = goodsValue;
|
|
}
|
|
|
|
public int getIsInsure() {
|
|
return isInsure;
|
|
}
|
|
|
|
public void setIsInsure(int isInsure) {
|
|
this.isInsure = isInsure;
|
|
}
|
|
|
|
public String getInsureAmount() {
|
|
return insureAmount == null ? "" : insureAmount;
|
|
}
|
|
|
|
public void setInsureAmount(String insureAmount) {
|
|
this.insureAmount = insureAmount;
|
|
}
|
|
|
|
public String getEffectiveTime() {
|
|
return effectiveTime == null ? "" : effectiveTime;
|
|
}
|
|
|
|
public void setEffectiveTime(String effectiveTime) {
|
|
this.effectiveTime = effectiveTime;
|
|
}
|
|
|
|
public String getDistance() {
|
|
return distance == null ? "" : distance;
|
|
}
|
|
|
|
public void setDistance(String distance) {
|
|
this.distance = distance;
|
|
}
|
|
|
|
public int getVehicleType() {
|
|
return vehicleType;
|
|
}
|
|
|
|
public void setVehicleType(int vehicleType) {
|
|
this.vehicleType = vehicleType;
|
|
}
|
|
|
|
public String getVehicleTypeName() {
|
|
return vehicleTypeName == null ? "" : vehicleTypeName;
|
|
}
|
|
|
|
public void setVehicleTypeName(String vehicleTypeName) {
|
|
this.vehicleTypeName = vehicleTypeName;
|
|
}
|
|
|
|
public int getVehicleLength() {
|
|
return vehicleLength;
|
|
}
|
|
|
|
public void setVehicleLength(int vehicleLength) {
|
|
this.vehicleLength = vehicleLength;
|
|
}
|
|
|
|
public String getVehicleLengthName() {
|
|
return vehicleLengthName == null ? "" : vehicleLengthName;
|
|
}
|
|
|
|
public void setVehicleLengthName(String vehicleLengthName) {
|
|
this.vehicleLengthName = vehicleLengthName;
|
|
}
|
|
|
|
public String getNamedDrivers() {
|
|
return namedDrivers == null ? "" : namedDrivers;
|
|
}
|
|
|
|
public void setNamedDrivers(String namedDrivers) {
|
|
this.namedDrivers = namedDrivers;
|
|
}
|
|
|
|
public String getRequirement() {
|
|
return requirement == null ? "" : requirement;
|
|
}
|
|
|
|
public void setRequirement(String requirement) {
|
|
this.requirement = requirement;
|
|
}
|
|
|
|
public String getTotalFreight() {
|
|
return totalFreight == null ? "" : totalFreight;
|
|
}
|
|
|
|
public void setTotalFreight(String totalFreight) {
|
|
this.totalFreight = totalFreight;
|
|
}
|
|
|
|
public String getFailedReason() {
|
|
return failedReason == null ? "" : failedReason;
|
|
}
|
|
|
|
public void setFailedReason(String failedReason) {
|
|
this.failedReason = failedReason;
|
|
}
|
|
|
|
public List<SendInfoDTO> getSendInfo() {
|
|
if (sendInfo == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return sendInfo;
|
|
}
|
|
|
|
public void setSendInfo(List<SendInfoDTO> sendInfo) {
|
|
this.sendInfo = sendInfo;
|
|
}
|
|
|
|
public List<PutInfoDTO> getPutInfo() {
|
|
if (putInfo == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return putInfo;
|
|
}
|
|
|
|
public void setPutInfo(List<PutInfoDTO> putInfo) {
|
|
this.putInfo = putInfo;
|
|
}
|
|
|
|
public String getSendPutString() {
|
|
return sendPutString == null ? "" : sendPutString;
|
|
}
|
|
|
|
public void setSendPutString(String sendPutString) {
|
|
this.sendPutString = sendPutString;
|
|
}
|
|
|
|
public String getReport() {
|
|
return report == null ? "" : report;
|
|
}
|
|
|
|
public void setReport(String report) {
|
|
this.report = report;
|
|
}
|
|
|
|
public String getContractTemplateUrl() {
|
|
return contractTemplateUrl == null ? "" : contractTemplateUrl;
|
|
}
|
|
|
|
public void setContractTemplateUrl(String contractTemplateUrl) {
|
|
this.contractTemplateUrl = contractTemplateUrl;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public Object getStatusOver() {
|
|
return statusOver;
|
|
}
|
|
|
|
public void setStatusOver(Object statusOver) {
|
|
this.statusOver = statusOver;
|
|
}
|
|
|
|
public Object getContactName() {
|
|
return contactName;
|
|
}
|
|
|
|
public void setContactName(Object contactName) {
|
|
this.contactName = contactName;
|
|
}
|
|
|
|
public Object getContactPhone() {
|
|
return contactPhone;
|
|
}
|
|
|
|
public void setContactPhone(Object contactPhone) {
|
|
this.contactPhone = contactPhone;
|
|
}
|
|
|
|
public static class SendInfoDTO {
|
|
private long childNumber;
|
|
private int pid;
|
|
private String name;
|
|
private String phone;
|
|
private int province;
|
|
private int city;
|
|
private int area;
|
|
private String provinceCityArea;
|
|
private String address;
|
|
private String deadline;
|
|
private int type;
|
|
private int status;
|
|
private int displayOrder;
|
|
private Object totalAmount;
|
|
private String createTime;
|
|
private String longitude;
|
|
private String latitude;
|
|
private String businessName;
|
|
private String businessCode;
|
|
private List<GoodsDTO> goods;
|
|
|
|
public long getChildNumber() {
|
|
return childNumber;
|
|
}
|
|
|
|
public void setChildNumber(long childNumber) {
|
|
this.childNumber = childNumber;
|
|
}
|
|
|
|
public int getPid() {
|
|
return pid;
|
|
}
|
|
|
|
public void setPid(int pid) {
|
|
this.pid = pid;
|
|
}
|
|
|
|
public String getName() {
|
|
return name == null ? "" : name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone == null ? "" : phone;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
public int getProvince() {
|
|
return province;
|
|
}
|
|
|
|
public void setProvince(int province) {
|
|
this.province = province;
|
|
}
|
|
|
|
public int getCity() {
|
|
return city;
|
|
}
|
|
|
|
public void setCity(int city) {
|
|
this.city = city;
|
|
}
|
|
|
|
public int getArea() {
|
|
return area;
|
|
}
|
|
|
|
public void setArea(int area) {
|
|
this.area = area;
|
|
}
|
|
|
|
public String getProvinceCityArea() {
|
|
return provinceCityArea == null ? "" : provinceCityArea;
|
|
}
|
|
|
|
public void setProvinceCityArea(String provinceCityArea) {
|
|
this.provinceCityArea = provinceCityArea;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address == null ? "" : address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public String getDeadline() {
|
|
return deadline == null ? "" : deadline;
|
|
}
|
|
|
|
public void setDeadline(String deadline) {
|
|
this.deadline = deadline;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public int getDisplayOrder() {
|
|
return displayOrder;
|
|
}
|
|
|
|
public void setDisplayOrder(int displayOrder) {
|
|
this.displayOrder = displayOrder;
|
|
}
|
|
|
|
public Object getTotalAmount() {
|
|
return totalAmount;
|
|
}
|
|
|
|
public void setTotalAmount(Object totalAmount) {
|
|
this.totalAmount = totalAmount;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime == null ? "" : createTime;
|
|
}
|
|
|
|
public void setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public String getLongitude() {
|
|
return longitude == null ? "" : longitude;
|
|
}
|
|
|
|
public void setLongitude(String longitude) {
|
|
this.longitude = longitude;
|
|
}
|
|
|
|
public String getLatitude() {
|
|
return latitude == null ? "" : latitude;
|
|
}
|
|
|
|
public void setLatitude(String latitude) {
|
|
this.latitude = latitude;
|
|
}
|
|
|
|
public String getBusinessName() {
|
|
return businessName == null ? "" : businessName;
|
|
}
|
|
|
|
public void setBusinessName(String businessName) {
|
|
this.businessName = businessName;
|
|
}
|
|
|
|
public String getBusinessCode() {
|
|
return businessCode == null ? "" : businessCode;
|
|
}
|
|
|
|
public void setBusinessCode(String businessCode) {
|
|
this.businessCode = businessCode;
|
|
}
|
|
|
|
public List<GoodsDTO> getGoods() {
|
|
if (goods == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return goods;
|
|
}
|
|
|
|
public void setGoods(List<GoodsDTO> goods) {
|
|
this.goods = goods;
|
|
}
|
|
|
|
public static class GoodsDTO {
|
|
private long id;
|
|
private long childrenId;
|
|
private String goodName;
|
|
private String goodNum;
|
|
private String goodUnit;
|
|
private String goodPrice;
|
|
private String packName;
|
|
private Object createTime;
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public long getChildrenId() {
|
|
return childrenId;
|
|
}
|
|
|
|
public void setChildrenId(long childrenId) {
|
|
this.childrenId = childrenId;
|
|
}
|
|
|
|
public String getGoodName() {
|
|
return goodName == null ? "" : goodName;
|
|
}
|
|
|
|
public void setGoodName(String goodName) {
|
|
this.goodName = goodName;
|
|
}
|
|
|
|
public String getGoodNum() {
|
|
return goodNum == null ? "" : goodNum;
|
|
}
|
|
|
|
public void setGoodNum(String goodNum) {
|
|
this.goodNum = goodNum;
|
|
}
|
|
|
|
public String getGoodUnit() {
|
|
return goodUnit == null ? "" : goodUnit;
|
|
}
|
|
|
|
public void setGoodUnit(String goodUnit) {
|
|
this.goodUnit = goodUnit;
|
|
}
|
|
|
|
public String getGoodPrice() {
|
|
return goodPrice == null ? "" : goodPrice;
|
|
}
|
|
|
|
public void setGoodPrice(String goodPrice) {
|
|
this.goodPrice = goodPrice;
|
|
}
|
|
|
|
public String getPackName() {
|
|
return packName == null ? "" : packName;
|
|
}
|
|
|
|
public void setPackName(String packName) {
|
|
this.packName = packName;
|
|
}
|
|
|
|
public Object getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Object createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static class PutInfoDTO {
|
|
private long childNumber;
|
|
private int pid;
|
|
private String name;
|
|
private String phone;
|
|
private int province;
|
|
private int city;
|
|
private int area;
|
|
private String provinceCityArea;
|
|
private String address;
|
|
private String deadline;
|
|
private int type;
|
|
private int status;
|
|
private int displayOrder;
|
|
private Object totalAmount;
|
|
private String createTime;
|
|
private String longitude;
|
|
private String latitude;
|
|
private String businessName;
|
|
private String businessCode;
|
|
private List<GoodsDTO> goods;
|
|
|
|
public long getChildNumber() {
|
|
return childNumber;
|
|
}
|
|
|
|
public void setChildNumber(long childNumber) {
|
|
this.childNumber = childNumber;
|
|
}
|
|
|
|
public int getPid() {
|
|
return pid;
|
|
}
|
|
|
|
public void setPid(int pid) {
|
|
this.pid = pid;
|
|
}
|
|
|
|
public String getName() {
|
|
return name == null ? "" : name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getPhone() {
|
|
return phone == null ? "" : phone;
|
|
}
|
|
|
|
public void setPhone(String phone) {
|
|
this.phone = phone;
|
|
}
|
|
|
|
public int getProvince() {
|
|
return province;
|
|
}
|
|
|
|
public void setProvince(int province) {
|
|
this.province = province;
|
|
}
|
|
|
|
public int getCity() {
|
|
return city;
|
|
}
|
|
|
|
public void setCity(int city) {
|
|
this.city = city;
|
|
}
|
|
|
|
public int getArea() {
|
|
return area;
|
|
}
|
|
|
|
public void setArea(int area) {
|
|
this.area = area;
|
|
}
|
|
|
|
public String getProvinceCityArea() {
|
|
return provinceCityArea == null ? "" : provinceCityArea;
|
|
}
|
|
|
|
public void setProvinceCityArea(String provinceCityArea) {
|
|
this.provinceCityArea = provinceCityArea;
|
|
}
|
|
|
|
public String getAddress() {
|
|
return address == null ? "" : address;
|
|
}
|
|
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
|
|
public String getDeadline() {
|
|
return deadline == null ? "" : deadline;
|
|
}
|
|
|
|
public void setDeadline(String deadline) {
|
|
this.deadline = deadline;
|
|
}
|
|
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(int status) {
|
|
this.status = status;
|
|
}
|
|
|
|
public int getDisplayOrder() {
|
|
return displayOrder;
|
|
}
|
|
|
|
public void setDisplayOrder(int displayOrder) {
|
|
this.displayOrder = displayOrder;
|
|
}
|
|
|
|
public Object getTotalAmount() {
|
|
return totalAmount;
|
|
}
|
|
|
|
public void setTotalAmount(Object totalAmount) {
|
|
this.totalAmount = totalAmount;
|
|
}
|
|
|
|
public String getCreateTime() {
|
|
return createTime == null ? "" : createTime;
|
|
}
|
|
|
|
public void setCreateTime(String createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
|
|
public String getLongitude() {
|
|
return longitude == null ? "" : longitude;
|
|
}
|
|
|
|
public void setLongitude(String longitude) {
|
|
this.longitude = longitude;
|
|
}
|
|
|
|
public String getLatitude() {
|
|
return latitude == null ? "" : latitude;
|
|
}
|
|
|
|
public void setLatitude(String latitude) {
|
|
this.latitude = latitude;
|
|
}
|
|
|
|
public String getBusinessName() {
|
|
return businessName == null ? "" : businessName;
|
|
}
|
|
|
|
public void setBusinessName(String businessName) {
|
|
this.businessName = businessName;
|
|
}
|
|
|
|
public String getBusinessCode() {
|
|
return businessCode == null ? "" : businessCode;
|
|
}
|
|
|
|
public void setBusinessCode(String businessCode) {
|
|
this.businessCode = businessCode;
|
|
}
|
|
|
|
public List<GoodsDTO> getGoods() {
|
|
if (goods == null) {
|
|
return new ArrayList<>();
|
|
}
|
|
return goods;
|
|
}
|
|
|
|
public void setGoods(List<GoodsDTO> goods) {
|
|
this.goods = goods;
|
|
}
|
|
|
|
public static class GoodsDTO {
|
|
private long id;
|
|
private long childrenId;
|
|
private String goodName;
|
|
private String goodNum;
|
|
private String goodUnit;
|
|
private String goodPrice;
|
|
private String packName;
|
|
private Object createTime;
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public long getChildrenId() {
|
|
return childrenId;
|
|
}
|
|
|
|
public void setChildrenId(long childrenId) {
|
|
this.childrenId = childrenId;
|
|
}
|
|
|
|
public String getGoodName() {
|
|
return goodName == null ? "" : goodName;
|
|
}
|
|
|
|
public void setGoodName(String goodName) {
|
|
this.goodName = goodName;
|
|
}
|
|
|
|
public String getGoodNum() {
|
|
return goodNum == null ? "" : goodNum;
|
|
}
|
|
|
|
public void setGoodNum(String goodNum) {
|
|
this.goodNum = goodNum;
|
|
}
|
|
|
|
public String getGoodUnit() {
|
|
return goodUnit == null ? "" : goodUnit;
|
|
}
|
|
|
|
public void setGoodUnit(String goodUnit) {
|
|
this.goodUnit = goodUnit;
|
|
}
|
|
|
|
public String getGoodPrice() {
|
|
return goodPrice == null ? "" : goodPrice;
|
|
}
|
|
|
|
public void setGoodPrice(String goodPrice) {
|
|
this.goodPrice = goodPrice;
|
|
}
|
|
|
|
public String getPackName() {
|
|
return packName == null ? "" : packName;
|
|
}
|
|
|
|
public void setPackName(String packName) {
|
|
this.packName = packName;
|
|
}
|
|
|
|
public Object getCreateTime() {
|
|
return createTime;
|
|
}
|
|
|
|
public void setCreateTime(Object createTime) {
|
|
this.createTime = createTime;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|