【7.2.5】【rule】修改资源类型1-业务类型,2-系统类型

pull/37/head
fengshuonan 2022-09-28 23:43:52 +08:00
parent 99e5d2f2f6
commit 6b71c6505a
4 changed files with 12 additions and 12 deletions

View File

@ -42,15 +42,15 @@ import lombok.Getter;
@Getter
public enum ResBizTypeEnum implements ReadableEnum<ResBizTypeEnum> {
/**
*
*/
SYSTEM(1, "系统类"),
/**
*
*/
BUSINESS(2, "业务类"),
BUSINESS(1, "业务类"),
/**
*
*/
SYSTEM(2, "系统类"),
/**
*

View File

@ -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;
/**

View File

@ -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;
/**

View File

@ -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;
/**