7 changed files with 130 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotNull; |
||||
|
|
||||
|
/** |
||||
|
* @describe: 根据房屋编码获取房屋信息 |
||||
|
* @author wangtong |
||||
|
* @date 2022/6/1 18:17 |
||||
|
* @params |
||||
|
* @return |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcHouseInfoFormDTO extends PageFormDTO { |
||||
|
|
||||
|
private static final long serialVersionUID = -1L; |
||||
|
|
||||
|
|
||||
|
@NotNull(message = "房屋编码不可为空") |
||||
|
private String houseCode; |
||||
|
|
||||
|
private String customerId; |
||||
|
|
||||
|
} |
@ -0,0 +1,55 @@ |
|||||
|
|
||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* desc:房屋列表结果类 |
||||
|
* |
||||
|
* @author liujianjun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcHouseInfoResultDTO implements Serializable { |
||||
|
|
||||
|
|
||||
|
private static final long serialVersionUID = 4963952996288796744L; |
||||
|
|
||||
|
/** |
||||
|
* 所属网格 |
||||
|
*/ |
||||
|
private String gridName; |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 所属小区 |
||||
|
*/ |
||||
|
private String neighborHoodId; |
||||
|
private String neighborHoodName; |
||||
|
|
||||
|
/** |
||||
|
* 所属楼栋 |
||||
|
*/ |
||||
|
private String buildingId; |
||||
|
private String buildingName; |
||||
|
|
||||
|
/** |
||||
|
* 所属单元id |
||||
|
*/ |
||||
|
private String buildingUnitId; |
||||
|
private String unitName; |
||||
|
|
||||
|
/** |
||||
|
* 房间名称 |
||||
|
*/ |
||||
|
private String houseName; |
||||
|
|
||||
|
/** |
||||
|
* 门牌号 |
||||
|
*/ |
||||
|
private String doorName; |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue