Helius
2021-04-12 dba6a98a6c689e6f9e385f24f73acc27ee8d721e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.matrix.system.fenxiao.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ShopSalesmanGradeVo", description = "返参")
public class ShopSalesmanGradeVo {
    
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "等级名称")
    private String  name;
 
}