fg电池监控平台的达梦数据库版本
whycxzp
2024-11-13 8dc414d196df2bc4891e0c84333871f6b7fc8a7e
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
package com.whyc.pojo;
 
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.annotations.ApiModel;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
import java.io.Serializable;
 
@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@ApiModel("Interface")
@TableName(schema = "web_site", value = "tb_interface")
public class Interface implements Serializable {
    
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @TableField("interface_number")
    private String interfaceNumber;
 
    @TableField("interface_name")
    private String interfaceName;
 
    @TableField("enable")
    private Integer enable;
 
}