|
@@ -51,6 +51,9 @@ public class OpenApiController extends BaseController {
|
|
|
BaseRuntimeException.isBlank(startTime, null, "开始时间不能为空");
|
|
|
BaseRuntimeException.isBlank(endTime, null, "结束时间不能为空");
|
|
|
builder.append(" a.date between '").append(startTime).append("' and '").append(endTime).append("'");
|
|
|
+ // 20258-3-19 统计剩余时间大于0的
|
|
|
+ builder.append(" and a.left>0");
|
|
|
+
|
|
|
builder.append(" GROUP BY a.account,a.date");
|
|
|
List<TaskestimateVo> res = taskesTimateMapper.getList(builder.toString());
|
|
|
|