Commit 9726ac44 by 徐高华

社群群发

parent cec9170b
...@@ -22,6 +22,15 @@ public class ChatOwnerTotalDTO implements Serializable { ...@@ -22,6 +22,15 @@ public class ChatOwnerTotalDTO implements Serializable {
private int notSendCount; private int notSendCount;
// 计划状态 1进行中 2已结束 // 计划状态 1进行中 2已结束
private int planStatus; private int planStatus;
private int execType ;
public int getExecType() {
return execType;
}
public void setExecType(int execType) {
this.execType = execType;
}
public int getPlanStatus() { public int getPlanStatus() {
return planStatus; return planStatus;
......
...@@ -39,6 +39,16 @@ public class GroupChatPlanOwnerLogDTO implements Serializable{ ...@@ -39,6 +39,16 @@ public class GroupChatPlanOwnerLogDTO implements Serializable{
private String msgid ; private String msgid ;
private Date expireDate ; private Date expireDate ;
private Date sendTime ; private Date sendTime ;
private int execType ;
public int getExecType() {
return execType;
}
public void setExecType(int execType) {
this.execType = execType;
}
public Date getStartTime() { public Date getStartTime() {
return startTime; return startTime;
} }
......
...@@ -161,6 +161,7 @@ ...@@ -161,6 +161,7 @@
b.name planName , b.name planName ,
b.start_time startTime , b.start_time startTime ,
b.end_time endTime , b.end_time endTime ,
b.exec_type execType ,
<!-- 已发送 --> <!-- 已发送 -->
SUM(CASE a.send_status WHEN 2 THEN 1 ELSE 0 END ) sendCount, SUM(CASE a.send_status WHEN 2 THEN 1 ELSE 0 END ) sendCount,
<!-- 待发送 --> <!-- 待发送 -->
...@@ -228,6 +229,7 @@ ...@@ -228,6 +229,7 @@
a.owner_log_id ownerLogId , a.owner_log_id ownerLogId ,
b.plan_id planId , b.plan_id planId ,
b.name planName , b.name planName ,
b.exec_type execType ,
a.staff_id staffId , a.staff_id staffId ,
a.clerk_id clerkId , a.clerk_id clerkId ,
a.store_id storeId , a.store_id storeId ,
......
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