| | |
| | | package com.ard.alarm.camera.domain; |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | |
| | | @NoArgsConstructor |
| | | public class ArdCameras { |
| | | private static final long serialVersionUID = 1L; |
| | | public ArdCameras(String gdtype) |
| | | { |
| | | this.gdtype=gdtype; |
| | | } |
| | | |
| | | /** |
| | | * id |
| | | */ |
| | |
| | | /** |
| | | * 光电类型 |
| | | */ |
| | | |
| | | private String gdtype; |
| | | |
| | | @TableField("gdtype") |
| | | private String gdType; |
| | | /** |
| | | * 厂商 |
| | | */ |
| | | private String factory; |
| | | /** |
| | | * 通道号 |
| | | */ |
| | |
| | | private Integer loginId; |
| | | private String operatorId; |
| | | private Date operatorExpired; |
| | | /** |
| | | * 更新时间 |
| | | */ |
| | | private Date updateTime; |
| | | } |