Files
youlai-boot/src/main/java/com/youlai/system/pojo/vo/DictItemPageVO.java
2023-03-01 23:24:07 +08:00

25 lines
530 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.youlai.system.pojo.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Schema(description ="字典数据项分页对象")
@Data
public class DictItemPageVO {
@Schema(description="数据项ID")
private Long id;
@Schema(description="数据项名称")
private String name;
@Schema(description="")
private String value;
@Schema(description="类型状态1->启用;0->禁用")
private Integer status;
}