mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-24 02:08:48 +00:00
feat: 帮助注解 排序注解 设置必填项
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
ad4126a810
commit
7a60e673cc
@ -35,7 +35,7 @@ public @interface Help {
|
|||||||
/**
|
/**
|
||||||
* @return 命令描述
|
* @return 命令描述
|
||||||
*/
|
*/
|
||||||
String description() default "无";
|
String description();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return 当前命令可能需要的参数
|
* @return 当前命令可能需要的参数
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package pw.yumc.YumCore.commands.annotation;
|
package pw.yumc.YumCore.commands.annotation;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @since 2016年7月23日 上午9:04:56
|
* @since 2016年7月23日 上午9:04:56
|
||||||
* @author 喵♂呜
|
* @author 喵♂呜
|
||||||
*/
|
*/
|
||||||
public @interface Sort {
|
public @interface Sort {
|
||||||
/**
|
/**
|
||||||
* @return 命令排序
|
* @return 命令排序
|
||||||
*/
|
*/
|
||||||
int sort() default 50;
|
int sort();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user