fix
Hentua
2023-04-21 9d54bce9402c6df93be15e081cadc71f525125d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "RankAwardUpdateDto", description = "参数接口类")
public class RankAwardUpdateDto {
 
    private Long id;
 
    private String type;
 
    private String code;
 
    private String value;
 
    private String description;
}