Commit 096eafad by yuwei

2.0.0项目初始化

parent 065b5ce0
...@@ -46,6 +46,9 @@ public class MenuDto implements Serializable { ...@@ -46,6 +46,9 @@ public class MenuDto implements Serializable {
@NotNull(message = "类型不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class}) @NotNull(message = "类型不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class})
private Integer menuType; private Integer menuType;
@ApiModelProperty(value = "资源编码")
private String menuCode;
@ApiModelProperty(value = "排序") @ApiModelProperty(value = "排序")
@NotNull(message = "排序不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class}) @NotNull(message = "排序不能为空", groups = {ValidationGroups.Insert.class, ValidationGroups.Update.class})
private Integer menuSort; private Integer menuSort;
......
...@@ -63,6 +63,11 @@ public class MenuEntity extends BaseEntity { ...@@ -63,6 +63,11 @@ public class MenuEntity extends BaseEntity {
private Integer menuType; private Integer menuType;
/** /**
* 资源编码
*/
private String menuCode;
/**
* 排序 * 排序
*/ */
private Integer menuSort; private Integer menuSort;
......
...@@ -23,5 +23,6 @@ public class MenuVo implements Serializable { ...@@ -23,5 +23,6 @@ public class MenuVo implements Serializable {
private String menuPerms; private String menuPerms;
private String menuIcon; private String menuIcon;
private Integer menuType; private Integer menuType;
private String menuCode;
private Integer menuSort; private Integer menuSort;
} }
...@@ -6,7 +6,7 @@ spring: ...@@ -6,7 +6,7 @@ spring:
name: workflow-flowable-modeler name: workflow-flowable-modeler
datasource: datasource:
driver-class-name: com.mysql.cj.jdbc.Driver 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 username: root
password: 1234@abcd password: 1234@abcd
liquibase: 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