package com.ruoyi.manage.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; /** *

* 设备类型表 *

* * @author sunjiawei * @since 2025-03-18 */ @Getter @Setter @TableName("DP_EQUIPMENT_TYPE") @Schema(description = "设备类型表") public class DpEquipmentType { @Schema(title = "主键ID") @TableId(value = "ID", type = IdType.AUTO) private Integer id; @Schema(title = "类型名称") @TableField("TYPE_NAME") private String typeName; @Schema(title = "描述") @TableField("DESCRIPTION") private String description; @Schema(title = "图片模型地址") @TableField("FILE_PATH") private String filePath; @Schema(title = "图标名称") @TableField("ICON") private String icon; @TableField(exist = false) private Integer pageSize; @TableField(exist = false) private Integer pageNum; @TableField(exist = false) private Integer offset; }