流程分类-查询返回时间处理
This commit is contained in:
+2
-2
@@ -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){
|
||||
|
||||
+3
-5
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -106,7 +106,7 @@ public interface WorkFlowFeignClient {
|
||||
Result<String> forceRecall(@RequestParam("prcId") String prcId);
|
||||
|
||||
/**
|
||||
* 查询流程
|
||||
* 查询流程列表
|
||||
* @param name
|
||||
* @param category_id
|
||||
* @param current
|
||||
|
||||
+1
-1
@@ -126,7 +126,7 @@ public class WorkFlowFeignClientImpl{
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询流程
|
||||
* 查询流程列表
|
||||
* @param name
|
||||
* @param category_id
|
||||
* @param current
|
||||
|
||||
Reference in New Issue
Block a user