Commit 8056eeaf by 徐高华

朋友圈门店分组

parent 9d0d4d1c
......@@ -380,6 +380,8 @@ public class QwMomentController {
vo.setStoreId(storeId);
vo.setStoreName(store.getStoreName());
vo.setStoreCode(store.getStoreCode());
vo.setStoreGroupId(store.getStoreGroupId());
vo.setStoreGroupName(store.getStoreGroupName());
}
}
}
......@@ -404,6 +406,8 @@ public class QwMomentController {
vo.setStoreId(storeId);
vo.setStoreName(store.getStoreName());
vo.setStoreCode(store.getStoreCode());
vo.setStoreGroupId(store.getStoreGroupId());
vo.setStoreGroupName(store.getStoreGroupName());
}
}
List<String> memberIdList = list.stream().map(o->o.getMemberId()).collect(Collectors.toList());
......
......@@ -40,6 +40,19 @@ public class PlanClerkListQO extends BasePageInfo {
*/
private String statusFlag ;
/**
* 门店分组
*/
private String storeGroupIds ;
public String getStoreGroupIds() {
return storeGroupIds;
}
public void setStoreGroupIds(String storeGroupIds) {
this.storeGroupIds = storeGroupIds;
}
public String getStatusFlag() {
return statusFlag;
}
......
......@@ -25,6 +25,19 @@ public class PlanDataListQO extends BasePageInfo {
private Date endTime ;
/**
* 门店分组
*/
private String storeGroupIds ;
public String getStoreGroupIds() {
return storeGroupIds;
}
public void setStoreGroupIds(String storeGroupIds) {
this.storeGroupIds = storeGroupIds;
}
public Long getPlanId() {
return planId;
}
......
......@@ -50,11 +50,30 @@ public class QwMomentPlanAttendVO implements Serializable{
*/
private String storeCode ;
private String storeGroupName ;
private String storeGroupId ;
/**
* 下发失败原因
*/
private String reason ;
public String getStoreGroupName() {
return storeGroupName;
}
public void setStoreGroupName(String storeGroupName) {
this.storeGroupName = storeGroupName;
}
public String getStoreGroupId() {
return storeGroupId;
}
public void setStoreGroupId(String storeGroupId) {
this.storeGroupId = storeGroupId;
}
public String getStaffId() {
return staffId;
}
......
......@@ -70,6 +70,26 @@ public class QwMomentPlanDataVO implements Serializable{
*/
private Integer memberScene;
private String storeGroupName ;
private String storeGroupId ;
public String getStoreGroupName() {
return storeGroupName;
}
public void setStoreGroupName(String storeGroupName) {
this.storeGroupName = storeGroupName;
}
public String getStoreGroupId() {
return storeGroupId;
}
public void setStoreGroupId(String storeGroupId) {
this.storeGroupId = storeGroupId;
}
public String getMemberName() {
return memberName;
}
......
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