123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- package com.fdkankan.manage.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- 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.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2023-07-07
- */
- @Getter
- @Setter
- @TableName("t_authorize_camera")
- public class AuthorizeCamera implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 本地算法授权
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 客户名称
- */
- @TableField("customer_name")
- private String customerName;
- /**
- * 客户类别0直销,1经销
- */
- @TableField("customer_type")
- private Integer customerType;
- /**
- * 终端客户
- */
- @TableField("end_customer")
- private String endCustomer;
- /**
- * 使用类型
- */
- @TableField("use_type")
- private Integer useType;
- /**
- * 项目号
- */
- @TableField("project_num")
- private String projectNum;
- /**
- * 备注
- */
- @TableField("remark")
- private String remark;
- /**
- * 机器码
- */
- @TableField("machine_code")
- private String machineCode;
- /**
- * 机器UUID
- */
- @TableField("machine_uuid")
- private String machineUuid;
- /**
- * 设备名称
- */
- @TableField("machine_name")
- private String machineName;
- /**
- * 相机snCodes
- */
- @TableField("sn_codes")
- private String snCodes;
- /**
- * 相机数量
- */
- @TableField("camera_num")
- private Integer cameraNum;
- /**
- * 授权key
- */
- @TableField("authorize_key")
- private String authorizeKey;
- /**
- * 创建人
- */
- @TableField("sys_user_id")
- private Long sysUserId;
- @TableField(exist = false)
- private String sysUserName;
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- }
|