6 changed files with 83 additions and 0 deletions
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 当前登陆人的所属社区 |
|||
* @Author wgf |
|||
* @Date 2020/11/30 22:35 |
|||
*/ |
|||
@Data |
|||
public class CurrentUserCommunityInfoResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 4360690752084258055L; |
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
|
|||
} |
|||
|
Loading…
Reference in new issue