forked from luyan/epmet-cloud-lingshan
12 changed files with 173 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/7/13 09:58 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class GetStaffExistRoleFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8877632229886141531L; |
|||
|
|||
private String customerId; |
|||
private String staffId; |
|||
} |
@ -0,0 +1,40 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/7/13 09:56 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class UserRoleResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -7761042062413503637L; |
|||
|
|||
private String roleId; |
|||
/** |
|||
* 角色key |
|||
*/ |
|||
private String roleKey; |
|||
/** |
|||
* 角色名称 |
|||
*/ |
|||
private String roleName; |
|||
|
|||
private Integer isDefault; |
|||
|
|||
/** |
|||
* 是否选中(选中的是true) |
|||
*/ |
|||
private Boolean selected; |
|||
|
|||
public UserRoleResultDTO() { |
|||
this.roleId = ""; |
|||
this.roleKey = ""; |
|||
this.roleName = ""; |
|||
this.selected = false; |
|||
} |
|||
} |
Loading…
Reference in new issue