新增了sort字段
This commit is contained in:
@@ -51,6 +51,12 @@ public class BpmFormParam implements Serializable {
|
||||
@ApiModelProperty("备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
@ApiModelProperty("排序")
|
||||
private Integer sort = 100;
|
||||
|
||||
|
||||
/**
|
||||
* 更新操作实体
|
||||
|
||||
@@ -51,6 +51,12 @@ public class BpmSignParam extends BaseEntity implements Serializable {
|
||||
@ApiModelProperty("流程创建表单路径")
|
||||
private String createPath;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
@ApiModelProperty("排序")
|
||||
private Integer sort = 100;
|
||||
|
||||
|
||||
/**
|
||||
* 更新操作实体
|
||||
|
||||
@@ -61,4 +61,9 @@ public class BpmForm extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
}
|
||||
|
||||
@@ -52,6 +52,11 @@ public class BpmSign extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -19,6 +19,8 @@ public class BpmFormVO implements Serializable {
|
||||
|
||||
private Integer status; // 参见 CommonStatusEnum 枚举
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private String remark;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@@ -48,6 +48,11 @@ public class BpmSignVO implements Serializable {
|
||||
*/
|
||||
private String createPath;
|
||||
|
||||
/**
|
||||
* 排序
|
||||
*/
|
||||
private Integer sort;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user