Change menu sort to priority.

pull/146/head
ruibaby 2019-04-27 20:52:37 +08:00
parent 07d07e2170
commit 4c2f329a39
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public class MenuDTO implements OutputConverter<MenuDTO, Menu> {
private String url;
private Integer sort;
private Integer priority;
private String target;

View File

@ -28,7 +28,7 @@ public class MenuParam implements InputConverter<Menu> {
private String url;
@Min(value = 0, message = "Menu priority must not be less than {value}")
private Integer sort;
private Integer priority;
@Size(max = 50, message = "Length of menu target must not be more than {max}")
private String target;