20 changed files with 114 additions and 61 deletions
@ -0,0 +1,20 @@ |
|||||
|
package com.ccsens.tall.bean.vo; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author 逗 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RoleVo { |
||||
|
@Data |
||||
|
@ApiModel("查找项目下的所有角色(包括全体成员)") |
||||
|
public static class RoleByProjectId{ |
||||
|
@ApiModelProperty("角色id") |
||||
|
private Long roleId; |
||||
|
@ApiModelProperty("角色名") |
||||
|
private String roleName; |
||||
|
} |
||||
|
} |
@ -1,4 +1,4 @@ |
|||||
spring: |
spring: |
||||
profiles: |
profiles: |
||||
active: prod |
active: dev |
||||
include: util-prod,common |
include: util-dev,common |
||||
|
Loading…
Reference in new issue