Commit b8bf190b by 徐高华

非单向好友删除

parent 4bf306f9
...@@ -200,6 +200,8 @@ public class WechatWorkController extends NewBaseController { ...@@ -200,6 +200,8 @@ public class WechatWorkController extends NewBaseController {
fieldList.add("salesDeleteNum"); fieldList.add("salesDeleteNum");
indexList.add("单向好友人数"); indexList.add("单向好友人数");
fieldList.add("onewayFriendNum"); fieldList.add("onewayFriendNum");
indexList.add("非单向好友被删除人数");
fieldList.add("delIsSingleNum");
task.setFileName( "流失好友-门店维度数据统计-" + qo.getStartDate() + "_" + qo.getEndDate()); task.setFileName( "流失好友-门店维度数据统计-" + qo.getStartDate() + "_" + qo.getEndDate());
...@@ -289,6 +291,8 @@ public class WechatWorkController extends NewBaseController { ...@@ -289,6 +291,8 @@ public class WechatWorkController extends NewBaseController {
fieldList.add("salesDeleteNum"); fieldList.add("salesDeleteNum");
indexList.add("单向好友人数"); indexList.add("单向好友人数");
fieldList.add("onewayFriendNum"); fieldList.add("onewayFriendNum");
indexList.add("非单向好友被删除人数");
fieldList.add("delIsSingleNum");
task.setFileName( "流失好友-导购维度数据统计-" + qo.getStartDate() + "_" + qo.getEndDate()); task.setFileName( "流失好友-导购维度数据统计-" + qo.getStartDate() + "_" + qo.getEndDate());
......
...@@ -68,6 +68,7 @@ public class WechatWorkLostClerkQO implements Serializable { ...@@ -68,6 +68,7 @@ public class WechatWorkLostClerkQO implements Serializable {
map.put("totalLostNum", 2); map.put("totalLostNum", 2);
map.put("deleteSalesNum", 3); map.put("deleteSalesNum", 3);
map.put("salesDeleteNum", 4); map.put("salesDeleteNum", 4);
map.put("delIsSingleNum",5) ;
return map.get(orderByFields) == null ? 1 : map.get(orderByFields); return map.get(orderByFields) == null ? 1 : map.get(orderByFields);
} }
......
...@@ -57,6 +57,7 @@ public class WechatWorkLostStoreGroupQO extends StoreGroupCommonQO implements Se ...@@ -57,6 +57,7 @@ public class WechatWorkLostStoreGroupQO extends StoreGroupCommonQO implements Se
map.put("totalLostNum", 2); map.put("totalLostNum", 2);
map.put("deleteSalesNum", 3); map.put("deleteSalesNum", 3);
map.put("salesDeleteNum", 4); map.put("salesDeleteNum", 4);
map.put("delIsSingleNum",5) ;
return map.get(orderByFields) == null ? 1 : map.get(orderByFields); return map.get(orderByFields) == null ? 1 : map.get(orderByFields);
} }
......
...@@ -36,4 +36,6 @@ public class WechatWorkLostClerkVO extends StoreGroupCommonVO implements Seriali ...@@ -36,4 +36,6 @@ public class WechatWorkLostClerkVO extends StoreGroupCommonVO implements Seriali
private String clerkName; private String clerkName;
private String clerkId; private String clerkId;
private Integer delIsSingleNum ;
} }
...@@ -30,4 +30,6 @@ public class WechatWorkLostStoreGroupVO extends StoreGroupCommonVO implements Se ...@@ -30,4 +30,6 @@ public class WechatWorkLostStoreGroupVO extends StoreGroupCommonVO implements Se
* 导购删除好友人数 * 导购删除好友人数
*/ */
private Integer salesDeleteNum; private Integer salesDeleteNum;
private Integer delIsSingleNum ;
} }
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