流程分类-查询返回时间处理

This commit is contained in:
wangzhijiang
2022-03-07 16:35:52 +08:00
parent a270522e7d
commit b4a8efb162
4 changed files with 7 additions and 9 deletions
@@ -116,8 +116,8 @@ public class workFlowController {
return workFlowFeignClient.forceRecall(prcId);
}
@AutoLog(value = "查询流程")
@ApiOperation(value="查询流程", notes="查询流程")
@AutoLog(value = "查询流程列表")
@ApiOperation(value="查询流程列表", notes="查询流程列表")
@GetMapping("/modelListPage")
public Result<Map<String, Object>> modelListPage(@RequestParam(value="name",required = false)String name, @RequestParam(value="category_id ",required = false)String category_id,
@RequestParam("current")int current, @RequestParam("size")int size){
@@ -1,14 +1,12 @@
package com.jero.modules.wkflow.entity;
import java.util.Date;
public class Category {
private String objectId;
private int isDeleted;
private Date createTime;
private String createTime;
private String code;
@@ -30,11 +28,11 @@ public class Category {
this.isDeleted = isDeleted;
}
public Date getCreateTime() {
public String getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
@@ -106,7 +106,7 @@ public interface WorkFlowFeignClient {
Result<String> forceRecall(@RequestParam("prcId") String prcId);
/**
* 查询流程
* 查询流程列表
* @param name
* @param category_id
* @param current
@@ -126,7 +126,7 @@ public class WorkFlowFeignClientImpl{
}
/**
* 查询流程
* 查询流程列表
* @param name
* @param category_id
* @param current