Commit 026e3275 by 徐高华

成长值

parent eee8003a
......@@ -1702,6 +1702,11 @@ public class WxStaffController extends WebBaseController {
integralText = "积分";
}
vo.setIntegralTextAlias(integralText);
String growthTextAlias = map.get("成长值");
if(org.apache.commons.lang.StringUtils.isBlank(growthTextAlias)) {
growthTextAlias = "成长值";
}
vo.setGrowthTextAlias(growthTextAlias);
}
}
}
......
......@@ -33,6 +33,16 @@ public class StaffStoreVO implements Serializable {
private String storeCode;
// 积分别名
private String integralTextAlias ;
// 成长值别名
private String growthTextAlias ;
public String getGrowthTextAlias() {
return growthTextAlias;
}
public void setGrowthTextAlias(String growthTextAlias) {
this.growthTextAlias = growthTextAlias;
}
public String getIntegralTextAlias() {
return integralTextAlias;
......
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