无关风月
12 小时以前 b5ead35c1d955f2a0e2e10da79254860d0ba95e9
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
package com.ruoyi.user.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author HJL
 * @version 1.0
 * @since 2024-07-10 8:50
 */
@Data
public class UserServeTypeVO {
 
    @ApiModelProperty("所属分类id")
    private Integer classifyId;
 
    @ApiModelProperty("所属分类名称")
    private String classifyName;
 
    @ApiModelProperty("分类图标")
    private String classificationPicture;
 
    @ApiModelProperty("分类描述")
    private String typeDescribe;
 
    @ApiModelProperty("服务类型(0:以旧换新;1:家电回收)")
    private Integer type;
 
    public UserServeTypeVO(Integer classifyId, String classifyName, String classificationPicture, String typeDescribe, Integer type) {
        this.classifyId = classifyId;
        this.classifyName = classifyName;
        this.classificationPicture = classificationPicture;
        this.typeDescribe = typeDescribe;
        this.type = type;
    }
}