fix
Helius
2023-12-23 a3bdb0cdb21e27eb52ac5753c0cdc8c3d4a74232
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.mall.vo;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminPayMethodVo", description = "信息返回类")
public class AdminPayMethodVo {
 
    private Long id;
 
    private String type;
 
    private String code;
 
    private String value;
 
    private String description;
}