mirror of https://gitee.com/stylefeng/roses
【7.2.5】【rule】修改资源类型1-业务类型,2-系统类型
parent
99e5d2f2f6
commit
6b71c6505a
|
@ -42,15 +42,15 @@ import lombok.Getter;
|
|||
@Getter
|
||||
public enum ResBizTypeEnum implements ReadableEnum<ResBizTypeEnum> {
|
||||
|
||||
/**
|
||||
* 系统类
|
||||
*/
|
||||
SYSTEM(1, "系统类"),
|
||||
|
||||
/**
|
||||
* 业务类
|
||||
*/
|
||||
BUSINESS(2, "业务类"),
|
||||
BUSINESS(1, "业务类"),
|
||||
|
||||
/**
|
||||
* 系统类
|
||||
*/
|
||||
SYSTEM(2, "系统类"),
|
||||
|
||||
/**
|
||||
* 默认
|
||||
|
|
|
@ -121,9 +121,9 @@ public class ResourceDefinition implements Serializable {
|
|||
private String httpMethod;
|
||||
|
||||
/**
|
||||
* 资源的业务类型:1-系统类型,2-业务类型
|
||||
* 资源的业务类型:1-业务类型,2-系统类型
|
||||
*/
|
||||
@ChineseDescription("资源的业务类型:1-系统类型,2-业务类型")
|
||||
@ChineseDescription("资源的业务类型:1-业务类型,2-系统类型")
|
||||
private Integer resourceBizType;
|
||||
|
||||
/**
|
||||
|
|
|
@ -126,9 +126,9 @@ public class ResourceRequest extends BaseRequest {
|
|||
private String httpMethod;
|
||||
|
||||
/**
|
||||
* 资源的业务类型:1-系统类型,2-业务类型
|
||||
* 资源的业务类型:1-业务类型,2-系统类型
|
||||
*/
|
||||
@ChineseDescription("资源的业务类型:1-系统类型,2-业务类型")
|
||||
@ChineseDescription("资源的业务类型:1-业务类型,2-系统类型")
|
||||
private Integer resourceBizType;
|
||||
|
||||
/**
|
||||
|
|
|
@ -138,10 +138,10 @@ public class SysResource extends BaseEntity {
|
|||
private String httpMethod;
|
||||
|
||||
/**
|
||||
* 资源的业务类型:1-系统类型,2-业务类型
|
||||
* 资源的业务类型:1-业务类型,2-系统类型
|
||||
*/
|
||||
@TableField("resource_biz_type")
|
||||
@ChineseDescription("资源的业务类型:1-系统类型,2-业务类型")
|
||||
@ChineseDescription("资源的业务类型:1-业务类型,2-系统类型")
|
||||
private Integer resourceBizType;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue