1.2
luo
2024-01-02 372713d9d50c73871d51fd98b655d8bd9e24df46
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;
 
}