新增了sort字段

This commit is contained in:
guosongrui
2024-05-28 15:21:25 +08:00
parent 738a9497eb
commit 6817b33020
16 changed files with 38 additions and 13 deletions

View File

@@ -51,6 +51,12 @@ public class BpmFormParam implements Serializable {
@ApiModelProperty("备注")
private String remark;
/**
* 排序
*/
@ApiModelProperty("排序")
private Integer sort = 100;
/**
* 更新操作实体

View File

@@ -51,6 +51,12 @@ public class BpmSignParam extends BaseEntity implements Serializable {
@ApiModelProperty("流程创建表单路径")
private String createPath;
/**
* 排序
*/
@ApiModelProperty("排序")
private Integer sort = 100;
/**
* 更新操作实体

View File

@@ -61,4 +61,9 @@ public class BpmForm extends BaseEntity implements Serializable {
*/
private Integer state;
/**
* 排序
*/
private Integer sort;
}

View File

@@ -52,6 +52,11 @@ public class BpmSign extends BaseEntity implements Serializable {
*/
private Integer state;
/**
* 排序
*/
private Integer sort;
}

View File

@@ -19,6 +19,8 @@ public class BpmFormVO implements Serializable {
private Integer status; // 参见 CommonStatusEnum 枚举
private Integer sort;
private String remark;
private LocalDateTime createTime;

View File

@@ -48,6 +48,11 @@ public class BpmSignVO implements Serializable {
*/
private String createPath;
/**
* 排序
*/
private Integer sort;
/**