|
@ -68,186 +68,223 @@ public class BaseParam implements Serializable {
|
|
|
/**
|
|
|
* 参数校验分组:分页
|
|
|
*/
|
|
|
public @interface page {}
|
|
|
public @interface page {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:列表
|
|
|
*/
|
|
|
public @interface list {}
|
|
|
public @interface list {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:下拉
|
|
|
*/
|
|
|
public @interface dropDown {}
|
|
|
public @interface dropDown {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:增加
|
|
|
*/
|
|
|
public @interface add {}
|
|
|
public @interface add {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:编辑
|
|
|
*/
|
|
|
public @interface edit {}
|
|
|
public @interface edit {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:更新信息
|
|
|
*/
|
|
|
public @interface updateInfo {}
|
|
|
public @interface updateInfo {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:修改密码
|
|
|
*/
|
|
|
public @interface updatePwd {}
|
|
|
public @interface updatePwd {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:重置密码
|
|
|
*/
|
|
|
public @interface resetPwd {}
|
|
|
public @interface resetPwd {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:修改头像
|
|
|
*/
|
|
|
public @interface updateAvatar{}
|
|
|
public @interface updateAvatar {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:删除
|
|
|
*/
|
|
|
public @interface delete {}
|
|
|
public @interface delete {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:详情
|
|
|
*/
|
|
|
public @interface detail {}
|
|
|
public @interface detail {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:授权角色
|
|
|
*/
|
|
|
public @interface grantRole {}
|
|
|
public @interface grantRole {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:授权菜单
|
|
|
*/
|
|
|
public @interface grantMenu {}
|
|
|
public @interface grantMenu {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:授权数据
|
|
|
*/
|
|
|
public @interface grantData {}
|
|
|
public @interface grantData {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:强退
|
|
|
*/
|
|
|
public @interface force {}
|
|
|
public @interface force {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:停用
|
|
|
*/
|
|
|
public @interface stop {}
|
|
|
public @interface stop {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:启用
|
|
|
*/
|
|
|
public @interface start {}
|
|
|
public @interface start {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:部署
|
|
|
*/
|
|
|
public @interface deploy {}
|
|
|
public @interface deploy {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:挂起
|
|
|
*/
|
|
|
public @interface suspend {}
|
|
|
public @interface suspend {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:激活
|
|
|
*/
|
|
|
public @interface active {}
|
|
|
public @interface active {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:调试
|
|
|
*/
|
|
|
public @interface debug {}
|
|
|
public @interface debug {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:委托
|
|
|
*/
|
|
|
public @interface entrust {}
|
|
|
public @interface entrust {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:转办
|
|
|
*/
|
|
|
public @interface turn {}
|
|
|
public @interface turn {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:追踪
|
|
|
*/
|
|
|
public @interface trace {}
|
|
|
public @interface trace {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:跳转
|
|
|
*/
|
|
|
public @interface jump {}
|
|
|
public @interface jump {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:同意
|
|
|
*/
|
|
|
public @interface agree {}
|
|
|
public @interface agree {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:退回
|
|
|
*/
|
|
|
public @interface back {}
|
|
|
public @interface back {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:终止
|
|
|
*/
|
|
|
public @interface end {}
|
|
|
public @interface end {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:导出
|
|
|
*/
|
|
|
public @interface export {}
|
|
|
public @interface export {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:映射
|
|
|
*/
|
|
|
public @interface mapping {}
|
|
|
public @interface mapping {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:切换
|
|
|
*/
|
|
|
public @interface change {}
|
|
|
public @interface change {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:历史审批记录
|
|
|
*/
|
|
|
public @interface commentHistory {}
|
|
|
public @interface commentHistory {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:修改状态
|
|
|
*/
|
|
|
public @interface changeStatus {}
|
|
|
public @interface changeStatus {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:传阅
|
|
|
*/
|
|
|
public @interface circulate {}
|
|
|
public @interface circulate {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:加签
|
|
|
*/
|
|
|
public @interface addSign {}
|
|
|
public @interface addSign {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:减签
|
|
|
*/
|
|
|
public @interface deleteSign {}
|
|
|
public @interface deleteSign {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 参数校验分组:添加节点
|
|
|
*/
|
|
|
public @interface addNode {}
|
|
|
public @interface addNode {
|
|
|
}
|
|
|
|
|
|
}
|