Commit 35a38cc7 by 王祖波

增加门店类型

parent 2cbec568
......@@ -1755,6 +1755,7 @@ public class WxStaffController extends WebBaseController {
vo.setStoreId(clerk.getStoreId());
vo.setStoreImg(store.getStoreImage());
vo.setStoreName(store.getStoreName());
vo.setStoreDiscountType(store.getStoreDiscountType());
vo.setWxEnterpriseId(wxEnterpriseId);
vo.setClerkName(clerk.getClerkName());
vo.setHeadImg(staffDTO.getHeadImg());
......
......@@ -35,6 +35,8 @@ public class StaffStoreVO implements Serializable {
private String integralTextAlias ;
// 成长值别名
private String growthTextAlias ;
// 0-正价店,1-折扣店
private Integer storeDiscountType;
public String getGrowthTextAlias() {
return growthTextAlias;
......@@ -202,4 +204,12 @@ public class StaffStoreVO implements Serializable {
public void setStoreCode(String storeCode) {
this.storeCode = storeCode;
}
public Integer getStoreDiscountType() {
return storeDiscountType;
}
public void setStoreDiscountType(Integer storeDiscountType) {
this.storeDiscountType = storeDiscountType;
}
}
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