renkang
2 天以前 4a99240038013c7d962040e6f8eabd2d72095fd7
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
package com.doumee.dao.business.model;
 
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 com.doumee.core.model.LoginUserModel;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel("智精灵网关镜像")
@TableName("yw_conditioner_gateway")
public class YwConditionerGateway extends LoginUserModel {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
    private Integer creator;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createDate;
    private Integer editor;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date editDate;
    private Integer isdeleted;
    private String remark;
 
    @ApiModelProperty("平台网关ID")
    private Integer platformWgId;
    @ApiModelProperty("网关MAC")
    private String wgMac;
    @ApiModelProperty("备注")
    private String wgBz;
    @ApiModelProperty("在线/离线")
    private String onlineStatus;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date lastSyncDate;
 
    @TableField(exist = false)
    @ApiModelProperty("关键字(MAC/备注)")
    private String keyword;
}