能力表修改

This commit is contained in:
dinggang 2022-04-26 11:51:08 +08:00
parent e525007c0c
commit 816ec82d45
3 changed files with 9 additions and 1 deletions

View File

@ -30,6 +30,8 @@ public class ResourceDTO implements Serializable {
private String description;
@ApiModelProperty(value = "链接URL")
private String link;
@ApiModelProperty(value = "api请求方式")
private String apiMethodType;
@ApiModelProperty(value = "apiURL")
private String apiUrl;
@ApiModelProperty(value = "groupID")

View File

@ -40,6 +40,10 @@ public class ResourceEntity extends BaseEntity {
* 链接URL
*/
private String link;
/**
* api请求方式
*/
private String apiMethodType;
/**
* apiURL
*/

View File

@ -9,6 +9,7 @@
<result property="name" column="name"/>
<result property="description" column="description"/>
<result property="link" column="link"/>
<result property="apiMethodType" column="api_method_type"/>
<result property="apiUrl" column="api_url"/>
<result property="groupId" column="group_id"/>
<result property="deptId" column="dept_id"/>
@ -37,6 +38,7 @@
<result property="name" column="name"/>
<result property="description" column="description"/>
<result property="link" column="link"/>
<result property="apiMethodType" column="api_method_type"/>
<result property="apiUrl" column="api_url"/>
<result property="groupId" column="group_id"/>
<result property="deptId" column="dept_id"/>