6 changed files with 101 additions and 1 deletions
@ -0,0 +1,42 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/6/15 5:49 下午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class RepairStaffRoleCacheResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1220784037854283625L; |
|||
|
|||
/** |
|||
* 角色key |
|||
*/ |
|||
private String roleKey; |
|||
|
|||
/** |
|||
* 角色value |
|||
*/ |
|||
private String roleName; |
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 工作人员ID |
|||
*/ |
|||
private String staffId; |
|||
|
|||
/** |
|||
* 客户ID |
|||
*/ |
|||
private String customerId; |
|||
|
|||
} |
Loading…
Reference in new issue