forked from rongchao/epmet-cloud-rizhao
6 changed files with 112 additions and 1 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.resi.partymember.dto.partyOrg.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2022/8/22 10:25 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DefaultPartyOrgResDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -7563161453372080189L; |
||||
|
/** |
||||
|
* 当前登录用户所属的组织 |
||||
|
*/ |
||||
|
private String staffAgencyId; |
||||
|
/** |
||||
|
* 当前登录用户所属的组织名称 |
||||
|
*/ |
||||
|
private String staffAgencyName; |
||||
|
/** |
||||
|
* 当前登录用户所属的行政组织下,默认的党组织名称 |
||||
|
*/ |
||||
|
private String defaultPartyOrgId; |
||||
|
private String defaultPartyOrgPid; |
||||
|
/** |
||||
|
* 党组织名称 |
||||
|
*/ |
||||
|
private String defaultPartyOrgName; |
||||
|
/** |
||||
|
* 党组织路径 |
||||
|
*/ |
||||
|
private String defaultPartyOrgPath; |
||||
|
} |
||||
|
|
||||
Loading…
Reference in new issue