Commit 279dd44a by 王祖波

Merge remote-tracking branch 'origin/feature-content4' into feature-content4

parents bab16355 e3cd31d0
...@@ -251,6 +251,8 @@ public class WxStaffController extends WebBaseController { ...@@ -251,6 +251,8 @@ public class WxStaffController extends WebBaseController {
} else { } else {
vo.setBindFlag(0); vo.setBindFlag(0);
} }
long memberCount = customerApiService.countMember(enterpriseId, storeId, dto.getClerkId());
vo.setMemberCount(Convert.toInt(memberCount, 0));
resultList.add(vo); resultList.add(vo);
} }
Page<StoreClerkVO> page = new Page(); Page<StoreClerkVO> page = new Page();
......
...@@ -18,6 +18,8 @@ public class StoreClerkVO implements Serializable { ...@@ -18,6 +18,8 @@ public class StoreClerkVO implements Serializable {
private String clerkImg; private String clerkImg;
private String clerkName; private String clerkName;
private Integer memberCount;
public String getClerkName() { public String getClerkName() {
return clerkName; return clerkName;
} }
...@@ -60,7 +62,12 @@ public class StoreClerkVO implements Serializable { ...@@ -60,7 +62,12 @@ public class StoreClerkVO implements Serializable {
public void setBindFlag(int bindFlag) { public void setBindFlag(int bindFlag) {
this.bindFlag = bindFlag; this.bindFlag = bindFlag;
} }
public Integer getMemberCount() {
return memberCount;
}
public void setMemberCount(Integer memberCount) {
this.memberCount = memberCount;
}
} }
...@@ -51,6 +51,17 @@ public class ContentMaterialLandingPageVO implements Serializable { ...@@ -51,6 +51,17 @@ public class ContentMaterialLandingPageVO implements Serializable {
*/ */
private Integer shoppingCartNum; private Integer shoppingCartNum;
/**
* 跳转穿搭社区开关
* 1 开启; 0关闭
*/
private Integer communityJumpFlag;
/**
* 同款搭配数量
*/
private Integer collocationNum;
public ContentMaterialInfoVO getContentMaterialInfo() { public ContentMaterialInfoVO getContentMaterialInfo() {
return contentMaterialInfo; return contentMaterialInfo;
...@@ -99,4 +110,20 @@ public class ContentMaterialLandingPageVO implements Serializable { ...@@ -99,4 +110,20 @@ public class ContentMaterialLandingPageVO implements Serializable {
public void setShoppingCartNum(Integer shoppingCartNum) { public void setShoppingCartNum(Integer shoppingCartNum) {
this.shoppingCartNum = shoppingCartNum; this.shoppingCartNum = shoppingCartNum;
} }
public Integer getCollocationNum() {
return collocationNum;
}
public void setCollocationNum(Integer collocationNum) {
this.collocationNum = collocationNum;
}
public Integer getCommunityJumpFlag() {
return communityJumpFlag;
}
public void setCommunityJumpFlag(Integer communityJumpFlag) {
this.communityJumpFlag = communityJumpFlag;
}
} }
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