feat: 帮助注解 排序注解 设置必填项

Signed-off-by: 502647092 <admin@yumc.pw>
merge/1/MERGE
502647092 2016-07-25 13:55:11 +08:00
parent ad4126a810
commit 7a60e673cc
2 changed files with 14 additions and 14 deletions

View File

@ -35,7 +35,7 @@ public @interface Help {
/**
* @return
*/
String description() default "无";
String description();
/**
* @return

View File

@ -1,13 +1,13 @@
package pw.yumc.YumCore.commands.annotation;
/**
*
* @since 2016723 9:04:56
* @author
*/
public @interface Sort {
/**
* @return
*/
int sort() default 50;
}
package pw.yumc.YumCore.commands.annotation;
/**
*
* @since 2016723 9:04:56
* @author
*/
public @interface Sort {
/**
* @return
*/
int sort();
}