jiazx0107@163.com
2023-10-25 03e26beab1d9c382b685c26059e6dec274a0d7d4
src/main/java/com/fzzy/gateway/entity/GatewayConf.java
@@ -28,6 +28,30 @@
    @Column(name = "kqmc", length = 100)
    private String kqmc;
    @PropertyDef(label = "网关ID")
    @Column(name = "gatewayId", length = 50)
    private String gatewayId;
    @PropertyDef(label = "网关IP")
    @Column(name = "gatewayIp", length = 20)
    private String gatewayIp;
    @PropertyDef(label = "网关Mac")
    @Column(name = "gatewayMac", length = 20)
    private String gatewayMac;
    @PropertyDef(label = "网关CPU")
    @Column(name = "gatewayCPU", length = 50)
    private String gatewayCPU;
    @PropertyDef(label = "网关内存")
    @Column(name = "gatewayMem", length = 50)
    private String gatewayMem;
    @PropertyDef(label = "网关硬盘")
    @Column(name = "gatewayHardDisk", length = 50)
    private String gatewayHardDisk;
    @PropertyDef(label = "用户名")
    @Column(name = "username", length = 50)
    private String userName;
@@ -44,6 +68,10 @@
    @Column(name = "apiUrl", length = 200)
    private String apiUrl;
    @PropertyDef(label = "appId")
    @Column(name = "appId", length = 50)
    private String appId;
    @PropertyDef(label = "推送协议")
    @Column(name = "pushProtocol", length = 20)
    private String pushProtocol;
@@ -54,6 +82,6 @@
    @PropertyDef(label = "是否上线")
    @Column(name = "exe_tag", length = 2)
    private String exeTag ="Y";
    private String exeTag = "Y";
}