13 changed files with 158 additions and 19 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.elink.esua.epdc.dto.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @program: esua-epdc |
||||
|
* @description: 部门信息上传 包装类 |
||||
|
* @author: wangtong |
||||
|
* @create: 2020-09-10 14:34 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CustomerdeptDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -4363497942180317879L; |
||||
|
|
||||
|
/** |
||||
|
* 是否是本次传输的第一次 |
||||
|
*/ |
||||
|
private Boolean isFirst = true; |
||||
|
|
||||
|
/** |
||||
|
* 组装数据 |
||||
|
*/ |
||||
|
private List<CustomerdeptResultDTO> dataList; |
||||
|
} |
||||
@ -0,0 +1,53 @@ |
|||||
|
package com.elink.esua.epdc.dto.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: esua-epdc |
||||
|
* @description: 部门信息上传 |
||||
|
* @author: wangtong |
||||
|
* @create: 2020-09-10 14:33 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class CustomerdeptResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8998861985519746586L; |
||||
|
|
||||
|
/** |
||||
|
*部门id |
||||
|
*/ |
||||
|
private String deptId; |
||||
|
|
||||
|
/** |
||||
|
*部门名称 |
||||
|
*/ |
||||
|
private String deptName; |
||||
|
|
||||
|
/** |
||||
|
*部门所属组织id |
||||
|
*/ |
||||
|
private String parentAgencyId; |
||||
|
|
||||
|
/** |
||||
|
*坐标区域可空 |
||||
|
*/ |
||||
|
private String areaMarks; |
||||
|
|
||||
|
/** |
||||
|
*中心点位可空 |
||||
|
*/ |
||||
|
private String centerMark; |
||||
|
|
||||
|
/** |
||||
|
*党支部的位置!!! |
||||
|
*/ |
||||
|
private String partyMark; |
||||
|
|
||||
|
/** |
||||
|
*数据更新至: yyyy|yyyyMM|yyyyMMdd |
||||
|
*/ |
||||
|
private String dataEndTime; |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue