| | |
| | | package com.sandu.ximon.dao.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 lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * LED表 |
| | | * @TableName led |
| | | */ |
| | | @TableName(value ="led") |
| | | @Data |
| | | |
| | | @TableName(value = "led") |
| | | public class LED implements Serializable { |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | /** |
| | | * |
| | | */ |
| | | @TableId |
| | | private Long id; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Long userId; |
| | | |
| | | /** |
| | |
| | | */ |
| | | private Integer kind; |
| | | |
| | | /*板卡号*/ |
| | | /** |
| | | * 板卡号 |
| | | */ |
| | | private String cardNo; |
| | | |
| | | /*名称*/ |
| | | // private String name; |
| | | |
| | | /** |
| | | * 在线状态 0:在线 1:离线 |
| | | */ |
| | | private Integer state; |
| | | |
| | | /*所属灯杆*/ |
| | | private String blongsLamp; |
| | | /** |
| | | * 所属灯杆 |
| | | */ |
| | | private Long blongsPole; |
| | | |
| | | private Long playPlanId; |
| | | /** |
| | | * 播放计划id |
| | | */ |
| | | private Long playplanId; |
| | | |
| | | /*IP地址*/ |
| | | /** |
| | | * IP地址 |
| | | */ |
| | | private String ip; |
| | | |
| | | /*备注*/ |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /*灯杆ID*/ |
| | | private String lampId; |
| | | /** |
| | | * 灯杆ID |
| | | */ |
| | | private String poleId; |
| | | |
| | | /*创建时间*/ |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | private LocalDateTime createTime; |
| | | |
| | | /*最近交互时间*/ |
| | | /** |
| | | * 最近交互时间 |
| | | */ |
| | | private LocalDateTime updateTime; |
| | | |
| | | |
| | | } |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |