1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.stylefeng.guns.modular.system.warpper.req;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * 找中介-个人详情-我的房源
| */
| @Data
| @ApiModel
| public class UserInfoDTO {
|
| @ApiModelProperty(value = "数据类型 1=求房源 2=房源", required = true)
| private Integer data;
|
|
| @ApiModelProperty(value = "类型 1=删除 2=下架 3=顶上去 4=上架", required = true)
| private Integer type;
|
| @ApiModelProperty(value = "房源id", required = true)
| private Integer id;
|
| }
|
|