无关风月
2024-08-20 f237a61c412870933f47316a011237cd538de9bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.stylefeng.guns.modular.system.vo;
 
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class DifficultyVO {
    @ApiModelProperty(value = "名字")
    private String name;
    @ApiModelProperty(value = "id")
    private Integer id;
    @ApiModelProperty(value = "是否可用 0否1是")
    private Integer isUse;
}