13693261870
2025-07-02 6708810c4de34dfb9513061432d656f91d56ee3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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;
 
/**
 * <p>
 * 设备类型表
 * </p>
 *
 * @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;
 
 
 
 
}