| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package com.fdkankan.goods.entity;
- import com.fdkankan.base.entity.BaseEntity;
- import lombok.Data;
- import javax.persistence.Column;
- import javax.persistence.Table;
- import javax.persistence.Transient;
- import java.io.Serializable;
- import java.math.BigInteger;
- /**
- * 相机实体表
- */
- @Data
- @Table(name = "t_camera_detail")
- public class CameraDetailEntity extends BaseEntity implements Serializable {
- private static final long serialVersionUID = -122990405139092098L;
- /**
- * 余额
- */
- @Column(name = "balance")
- private String balance;
- /**
- * 用户表t_user的id
- */
- @Column(name = "user_id")
- private Long userId;
- /**
- * 0表示客户,1表示员工,2表示赠送,3表示其他
- */
- @Column(name = "own")
- private Integer own;
- /**
- * 订单号
- */
- @Column(name = "order_sn")
- private String orderSn;
- /**
- * 0表示本国,1表示国外
- */
- @Column(name = "country")
- private int country;
- /**
- * 相机类型,0表示双目,1表示专业八目,2表示新双目
- * 相机类型,0表示双目,1四维看看pro,2 四维看看lite,3 双目转台,4 激光转台
- */
- @Column(name = "type")
- private int type;
- /**
- * 总容量
- */
- @Column(name = "total_space")
- private BigInteger totalSpace;
- /**
- * 已使用容量
- */
- @Column(name = "used_space")
- private BigInteger usedSpace;
- /**
- * 代理商,t_agent表的agentId
- */
- @Column(name = "agency")
- private String agency;
- /**
- * 主表id
- */
- @Column(name = "camera_id")
- private Long cameraId;
- /**
- * 商品id
- */
- @Column(name = "goods_id")
- private Long goodsId;
- /**
- * 企业信息id
- */
- @Column(name = "company_id")
- private Long companyId;
- @Column(name = "address")
- private String address;
- @Column(name = "cooperation_user")
- private Long cooperationUser;
- @Column(name = "agent_framework_id")
- private Long agentFrameworkId;
- }
|