|
@@ -3,7 +3,6 @@ package org.jeecg.modules.prowork.controller;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.jeecg.common.api.vo.Result;
|
|
@@ -82,6 +81,7 @@ public class ProWorkLogicController {
|
|
|
}
|
|
|
|
|
|
queryWrapper.eq("del_flag", CommonConstant.STATUS_NORMAL.toString());
|
|
|
+ queryWrapper.orderByDesc("create_time");
|
|
|
IPage<ProWorkLogic> pageList = proWorkLogicService.page(page, queryWrapper);
|
|
|
result.setSuccess(true);
|
|
|
result.setResult(pageList);
|