xiangpei
2024-08-25 b807d2644011c6b6c14332d0bb120843b2ef6985
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
package com.ycl.platform.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import com.ycl.platform.base.AbsEntity;
import lombok.Data;
 
/**
 * 平台运行监控
 *
 * @author xp
 * @since 2024-08-15
 */
@Data
@TableName("t_platform")
public class Platform extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("platform_name")
    /** 平台名称 */
    private String platformName;
 
    @TableField("sub_platform_name")
    /** 子级平台名称 */
    private String subPlatformName;
 
    @TableField("platform_ip")
    /** 平台名称 */
    private String platformIP;
 
    @TableField("area")
    /** 区域 */
    private String area;
 
    @TableField("status")
    /** 状态:1正常 2异常 */
    private Integer status;
 
    @TableField("remark")
    /** 备注 */
    private String remark;
 
    @TableField("parent_id")
    /** 主平台ID */
    private Integer parentId;
 
 
}