Administrator
2025-08-25 33a883b0d7edbf633dcf142d2e3c5bf2e334b121
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;
}