Commit a037ef44 by 王祖波

Merge branch 'feature-recommend' into 'developer'

增加门店类型

See merge request !2764
parents b8d8b248 1cd8ce7c
......@@ -40,6 +40,11 @@ public class StoreClerkInfoVO {
*/
private String storeName;
/**
* 0-正价店,1-折扣店
*/
private Integer storeDiscountType;
public void setClerk(ClerkDTO clerkDTO) {
if (clerkDTO == null) {
return;
......@@ -56,6 +61,7 @@ public class StoreClerkInfoVO {
this.setStoreId(storeDTO.getStoreId());
this.setStoreCode(storeDTO.getStoreCode());
this.setStoreName(storeDTO.getStoreName());
this.setStoreDiscountType(storeDTO.getStoreDiscountType());
}
}
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