mirror of https://gitee.com/stylefeng/roses
【7.2.5】【res】更新资源的业务类型
parent
8e49229ae6
commit
4a44be413b
|
@ -125,6 +125,12 @@ public class ResourceRequest extends BaseRequest {
|
||||||
@ChineseDescription("http请求方法")
|
@ChineseDescription("http请求方法")
|
||||||
private String httpMethod;
|
private String httpMethod;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 资源的业务类型:1-系统类型,2-业务类型
|
||||||
|
*/
|
||||||
|
@ChineseDescription("资源的业务类型:1-系统类型,2-业务类型")
|
||||||
|
private Integer resourceBizType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否需要登录:Y-是,N-否
|
* 是否需要登录:Y-是,N-否
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -137,6 +137,13 @@ public class SysResource extends BaseEntity {
|
||||||
@ChineseDescription("http请求方法")
|
@ChineseDescription("http请求方法")
|
||||||
private String httpMethod;
|
private String httpMethod;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 资源的业务类型:1-系统类型,2-业务类型
|
||||||
|
*/
|
||||||
|
@TableField("resource_biz_type")
|
||||||
|
@ChineseDescription("资源的业务类型:1-系统类型,2-业务类型")
|
||||||
|
private Integer resourceBizType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 是否需要登录:Y-是,N-否
|
* 是否需要登录:Y-是,N-否
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue