forked from luyan/epmet-cloud-lingshan
Browse Source
# Conflicts: # epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/controller/IcHouseController.javamaster
13 changed files with 272 additions and 41 deletions
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.result.lingshan; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2023/5/17 9:21 |
|||
*/ |
|||
@Data |
|||
public class HouseTreeDTO { |
|||
private String id; |
|||
/** |
|||
* 小区:neighborHood |
|||
* 楼栋:building |
|||
* 单元:unit |
|||
* 房屋:house |
|||
*/ |
|||
private String type; |
|||
private String name; |
|||
/** |
|||
* 下级机关组织 |
|||
*/ |
|||
private List<HouseTreeDTO> children; |
|||
} |
|||
|
@ -0,0 +1,14 @@ |
|||
package com.epmet.dto.result.lingshan; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2023/5/17 9:29 |
|||
*/ |
|||
@Data |
|||
public class HouseTreeFormDTO { |
|||
private String gridId; |
|||
} |
|||
|
@ -0,0 +1,75 @@ |
|||
package com.epmet.dto.result.lingshan; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 灵山_党员中心户联户 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2023-05-16 |
|||
*/ |
|||
@Data |
|||
public class LingshanPartyCenterHouseLianhuDTO implements Serializable { |
|||
|
|||
/** |
|||
* 主键(联户记录表) |
|||
*/ |
|||
@JsonIgnore |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户id |
|||
*/ |
|||
@JsonIgnore |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 党员中心户房屋id:lingshan_party_center_house.HOUSE_ID |
|||
*/ |
|||
@JsonIgnore |
|||
private String partyCenterHouseId; |
|||
|
|||
/** |
|||
* 联户:房屋所属组织id |
|||
*/ |
|||
@JsonIgnore |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 联户:房屋所属网格id |
|||
*/ |
|||
@JsonIgnore |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 联户:grid_id的path。包含grid_id |
|||
*/ |
|||
@JsonIgnore |
|||
private String gridIdPath; |
|||
|
|||
/** |
|||
* 联户:小区id |
|||
*/ |
|||
private String neighborHoodId; |
|||
|
|||
/** |
|||
* 联户:楼栋id |
|||
*/ |
|||
private String buildingId; |
|||
|
|||
/** |
|||
* 联户:单元id |
|||
*/ |
|||
private String buildingUnitId; |
|||
|
|||
/** |
|||
* 联户:联户房屋id |
|||
*/ |
|||
private String houseId; |
|||
|
|||
|
|||
} |
Loading…
Reference in new issue