xiangpei
6 小时以前 1cdb060a8aa59b0979f7609db1781805528e76e7
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
package cn.lili.modules.statistics.entity.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 消息提示
 *
 * @author Bulbasaur
 * @since 2020/12/9 14:25
 */
@Data
public class IndexNoticeVO {
 
    @ApiModelProperty(value = "待处理商品审核")
    private Long goods;
 
    @ApiModelProperty(value = "待处理店铺入驻审核")
    private Long store;
 
    @ApiModelProperty(value = "待处理售后申请")
    private Long refund;
 
    @ApiModelProperty(value = "待处理投诉审核")
    private Long complain;
 
    @ApiModelProperty(value = "待处理分销员提现申请")
    private Long distributionCash;
 
    @ApiModelProperty(value = "待处理商家结算")
    private Long waitPayBill;
 
}