123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package com.fdkankan.scene.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 2022-07-05
- */
- @Getter
- @Setter
- @TableName("t_camera_detail")
- public class CameraDetail implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 余额
- */
- @TableField("balance")
- private String balance;
- /**
- * 用户表t_user的id
- */
- @TableField("user_id")
- private Long userId;
- /**
- * 0表示客户,1表示员工,2表示赠送,3表示其他,4经销商销售
- */
- @TableField("own")
- private Integer own;
- /**
- * 订单号
- */
- @TableField("order_sn")
- private String orderSn;
- /**
- * 0表示本国,1表示国外
- */
- @TableField("country")
- private Integer country;
- /**
- * 经销商
- */
- @TableField("agency")
- private String agency;
- /**
- * 相机类型,0表示双目,1四维看看pro,2 四维看看lite,9 双目转台,10 激光转台
- */
- @TableField("type")
- private Integer type;
- /**
- * 总容量
- */
- @TableField("total_space")
- private Long totalSpace;
- /**
- * 已使用容量
- */
- @TableField("used_space")
- private Long usedSpace;
- /**
- * 相机主表t_camera的id
- */
- @TableField("camera_id")
- private Long cameraId;
- /**
- * 商品表t_goods的id
- */
- @TableField("goods_id")
- private Long goodsId;
- /**
- * 企业表t_company的id
- */
- @TableField("company_id")
- private Long companyId;
- /**
- * 代理商架构管理t_agent_framework的id
- */
- @TableField("agent_framework_id")
- private Long agentFrameworkId;
- /**
- * 相机协作用户id
- */
- @TableField("cooperation_user")
- private Long cooperationUser;
- /**
- * 设备地址(追溯管理后台)
- */
- @TableField("address")
- private String address;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- @TableField("user_camera_version")
- private String userCameraVersion;
- @TableField("app_version")
- private String appVersion;
- @TableField("last_request_time")
- private Date lastRequestTime;
- }
|