Helius
2022-05-13 3d9854e8ce419e7d8c415ff51ba58836efec8aca
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;
}