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