无关风月
2024-11-14 350067a73fc9ed0a35582b900533c2708d5b1212
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;
}