Commit 096eafad by yuwei

2.0.0项目初始化

parent 065b5ce0
......@@ -46,6 +46,9 @@ public class MenuDto implements Serializable {
@NotNull(message = "类型不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class})
private Integer menuType;
@ApiModelProperty(value = "资源编码")
private String menuCode;
@ApiModelProperty(value = "排序")
@NotNull(message = "排序不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class})
private Integer menuSort;
......
......@@ -63,6 +63,11 @@ public class MenuEntity extends BaseEntity {
private Integer menuType;
/**
* 资源编码
*/
private String menuCode;
/**
* 排序
*/
private Integer menuSort;
......
......@@ -23,5 +23,6 @@ public class MenuVo implements Serializable {
private String menuPerms;
private String menuIcon;
private Integer menuType;
private String menuCode;
private Integer menuSort;
}
......@@ -6,7 +6,7 @@ spring:
name: workflow-flowable-modeler
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://127.0.0.1:3306/data_cloud_workflow?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url: jdbc:mysql://192.168.234.100:3306/data_cloud_workflow?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: 1234@abcd
liquibase:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment