能力表修改
This commit is contained in:
parent
e525007c0c
commit
816ec82d45
|
@ -30,6 +30,8 @@ public class ResourceDTO implements Serializable {
|
||||||
private String description;
|
private String description;
|
||||||
@ApiModelProperty(value = "链接URL")
|
@ApiModelProperty(value = "链接URL")
|
||||||
private String link;
|
private String link;
|
||||||
|
@ApiModelProperty(value = "api请求方式")
|
||||||
|
private String apiMethodType;
|
||||||
@ApiModelProperty(value = "apiURL")
|
@ApiModelProperty(value = "apiURL")
|
||||||
private String apiUrl;
|
private String apiUrl;
|
||||||
@ApiModelProperty(value = "groupID")
|
@ApiModelProperty(value = "groupID")
|
||||||
|
|
|
@ -41,8 +41,12 @@ public class ResourceEntity extends BaseEntity {
|
||||||
*/
|
*/
|
||||||
private String link;
|
private String link;
|
||||||
/**
|
/**
|
||||||
* apiURL
|
* api请求方式
|
||||||
*/
|
*/
|
||||||
|
private String apiMethodType;
|
||||||
|
/**
|
||||||
|
* apiURL
|
||||||
|
*/
|
||||||
private String apiUrl;
|
private String apiUrl;
|
||||||
/**
|
/**
|
||||||
* groupID
|
* groupID
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
<result property="name" column="name"/>
|
<result property="name" column="name"/>
|
||||||
<result property="description" column="description"/>
|
<result property="description" column="description"/>
|
||||||
<result property="link" column="link"/>
|
<result property="link" column="link"/>
|
||||||
|
<result property="apiMethodType" column="api_method_type"/>
|
||||||
<result property="apiUrl" column="api_url"/>
|
<result property="apiUrl" column="api_url"/>
|
||||||
<result property="groupId" column="group_id"/>
|
<result property="groupId" column="group_id"/>
|
||||||
<result property="deptId" column="dept_id"/>
|
<result property="deptId" column="dept_id"/>
|
||||||
|
@ -37,6 +38,7 @@
|
||||||
<result property="name" column="name"/>
|
<result property="name" column="name"/>
|
||||||
<result property="description" column="description"/>
|
<result property="description" column="description"/>
|
||||||
<result property="link" column="link"/>
|
<result property="link" column="link"/>
|
||||||
|
<result property="apiMethodType" column="api_method_type"/>
|
||||||
<result property="apiUrl" column="api_url"/>
|
<result property="apiUrl" column="api_url"/>
|
||||||
<result property="groupId" column="group_id"/>
|
<result property="groupId" column="group_id"/>
|
||||||
<result property="deptId" column="dept_id"/>
|
<result property="deptId" column="dept_id"/>
|
||||||
|
|
Loading…
Reference in New Issue