huliguo
2025-06-04 7e9508a252df668c3f7472be02595c79b21be11a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.pojo.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("许可证VO")
public class PermitVO {
 
    @TableField("name")
    @ApiModelProperty(value = "许可证名称")
    private String name;
 
    @TableField("level")
    @ApiModelProperty(value = "许可证等级")
    private String level;
}