Commit 792fb5a8 by zhiwj

会员处理进度条

parent 2ea20328
......@@ -94,7 +94,7 @@ public class ClerkDTO implements Serializable {
}
public void setClerkName(String clerkName) {
this.clerkName = clerkName;
this.clerkName = clerkName == null ? null : clerkName.trim();
}
public String getClerkCode() {
......@@ -102,7 +102,7 @@ public class ClerkDTO implements Serializable {
}
public void setClerkCode(String clerkCode) {
this.clerkCode = clerkCode;
this.clerkCode = clerkCode == null ? null : clerkCode.trim();
}
public Integer getEnterpriseId() {
......
......@@ -135,7 +135,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setStoreName(String storeName) {
this.storeName = storeName.trim();
this.storeName = storeName == null ? null : storeName.trim();
}
public String getStoreCode() {
......@@ -143,7 +143,7 @@ public class StoreInfoDTO implements Serializable {
}
public void setStoreCode(String storeCode) {
this.storeCode = storeCode.trim();
this.storeCode = storeCode == null ? null : storeCode.trim();
}
public Integer getRegionId() {
......
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