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;
|
}
|
}
|