1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- package com.huimv.management.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- *
- *
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-06-24 09:55:37
- */
- @Data
- @TableName("camera_info")
- public class CameraInfoEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @TableId
- private Integer id;
- /**
- *
- */
- private String name;
- /**
- *
- */
- private String account;
- /**
- *
- */
- private String password;
- /**
- *
- */
- private String areaName;
- private Integer areaId;
- /**
- *
- */
- private String ip;
- /**
- *
- */
- private Integer farmId;
- /**
- *
- */
- private String remark;
- /**
- *
- */
- private Integer attention;
- private String cameraType;
- private String rtsp;
- /**
- * 删除状态 0正常 1已删除
- */
- @TableLogic
- private Integer deleted;
- }
|