Commit 028a9831 by 徐高华

画布

parent 6f7d9b67
......@@ -112,6 +112,11 @@ public class GroupChatPlanApiServiceImpl implements GroupChatPlanApiService {
Long planId = log.getPlanId() ;
GroupChatPlanBO plan = this.groupChatPlanService.getById(planId) ;
dto.setPlanName(plan.getName());
if(dto.getSendStatus()==1) {
if(plan.getSendFlag()==0 || plan.getEndTime().getTime() < System.currentTimeMillis()) {
dto.setSendStatus(0);
}
}
return ServiceResponse.success(dto);
}
......
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