forked from luyan/epmet-cloud-lingshan
6 changed files with 92 additions and 31 deletions
@ -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