package com.panzhihua.common.model.vos.community.convenient;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @title: ConvenientProductShelfVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 便民服务商家后台产品信息
|
* @author: hans
|
* @date: 2021/09/20 21:23
|
*/
|
@Data
|
@ApiModel("便民服务商家后台产品信息")
|
public class ConvenientProductShelfVO {
|
|
@ApiModelProperty("上架产品数量")
|
private Integer onShelfTotalNum;
|
|
@ApiModelProperty("下架产品数量")
|
private Integer offShelfTotalNum;
|
}
|