Commit fcad3105 by zhiwj

门店导入

parent bb915831
......@@ -126,7 +126,7 @@ public class ClerkDTO implements Serializable {
}
public void setPositionName(String positionName) {
this.positionName = positionName;
this.positionName = positionName == null ? null : positionName.trim();
}
public Integer getClerkGender() {
......@@ -142,7 +142,7 @@ public class ClerkDTO implements Serializable {
}
public void setNationcode(String nationcode) {
this.nationcode = nationcode;
this.nationcode = nationcode == null ? null : nationcode.trim();
}
public String getPhoneNumber() {
......@@ -150,7 +150,7 @@ public class ClerkDTO implements Serializable {
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
this.phoneNumber = phoneNumber == null ? null : phoneNumber.trim();
}
public Integer getStatus() {
......@@ -170,7 +170,7 @@ public class ClerkDTO implements Serializable {
}
public void setRemark(String remark) {
this.remark = remark;
this.remark = remark == null ? null : remark.trim();
}
public String getRemark() {
......
......@@ -159,7 +159,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setConactsPhone(String conactsPhone) {
this.conactsPhone = conactsPhone;
this.conactsPhone = conactsPhone == null ? null : conactsPhone.trim();
}
public String getAddress() {
......@@ -167,7 +167,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setAddress(String address) {
this.address = address;
this.address = address == null ? null : address.trim();
}
public String getBrandIds() {
......@@ -175,7 +175,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setBrandIds(String brandIds) {
this.brandIds = brandIds;
this.brandIds = brandIds == null ? null : brandIds.trim();
}
public String getAreaId() {
......@@ -183,7 +183,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setAreaId(String areaId) {
this.areaId = areaId;
this.areaId = areaId == null ? null : areaId.trim();
}
public String getLongitude() {
......@@ -191,7 +191,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setLongitude(String longitude) {
this.longitude = longitude;
this.longitude = longitude == null ? null : longitude.trim();
}
public String getLatitude() {
......@@ -199,7 +199,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setLatitude(String latitude) {
this.latitude = latitude;
this.latitude = latitude == null ? null : latitude.trim();
}
public Integer getOverflowStatus() {
......@@ -295,7 +295,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setProvinceId(String provinceId) {
this.provinceId = provinceId;
this.provinceId = provinceId == null ? null : provinceId.trim();
}
public String getCityId() {
......@@ -303,7 +303,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setCityId(String cityId) {
this.cityId = cityId;
this.cityId = cityId == null ? null : cityId.trim();
}
public String getProvinces() {
......@@ -311,7 +311,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setProvinces(String provinces) {
this.provinces = provinces;
this.provinces = provinces == null ? null : provinces.trim();
}
public Integer getCreateType() {
......@@ -343,7 +343,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setRegionName(String regionName) {
this.regionName = regionName;
this.regionName = regionName == null ? null : regionName.trim();
}
public List<Integer> getStoreBrandIdList() {
......@@ -480,6 +480,6 @@ public class StoreInfoDTO implements Serializable {
}
public void setCountyId(String countyId) {
this.areaId = countyId;
this.areaId = countyId == null ? null : areaId;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment