mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.panzhihua.common.model.dtos.neighbor;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @auther lyq
 * @create 2021-04-14 15:02:14
 * @describe 邻里圈请求参数
 */
@Data
@ApiModel("邻里圈请求参数")
public class ComActNeighborCircleAppDTO {
 
    @ApiModelProperty(value = "分页-当前页数", example = "1")
    private Long pageNum = 1L;
 
    @ApiModelProperty(value = "分页-每页记录数", example = "10")
    private Long pageSize = 10L;
 
    @ApiModelProperty("邻里圈查询类型(1.热门 2.最新 3.精品)")
    private Integer type = 1;
 
    @ApiModelProperty("话题id")
    private Long topicId;
 
    @ApiModelProperty(value = "社区id", hidden = true)
    private Long communityId;
 
    @ApiModelProperty(value = "用户id", hidden = true)
    private Long userId;
 
    @ApiModelProperty("关键词")
    private String keyWord;
 
    @ApiModelProperty("使用类型(1.邻里圈 2.问题清单 3.需求清单)")
    private Integer belongType;
 
    @ApiModelProperty(value = "处理状态 0 否 1是", example = "1")
    private Integer solveStatus;
 
    @ApiModelProperty(value = "接单人id", example = "1")
    private Long solveId;
 
    @ApiModelProperty(value = "查看求助列表 默认传1")
    private Integer isHelp;
 
    private String phone;
 
    @ApiModelProperty("接单类型 1单位 2个人")
    private Integer orderType;
    @ApiModelProperty("清单状态")
    private Integer status;
 
    @ApiModelProperty(value = "单位id", hidden = true)
    private Long checkUnitId;
 
    @ApiModelProperty(value = "社区id集合", hidden = true)
    private List<Long> communityIds;
    /**
     * 使用类型(1.邻里圈 2.问题清单 3.需求清单)
     */
    public interface BelongType{
        int LLQ = 1;
        int WTQD = 2;
        int XQQD = 3;
    }
 
}