123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.fdkankan.agent.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 2025-03-17
- */
- @Getter
- @Setter
- @TableName("t_agent_authorize_modeling")
- public class AgentAuthorizeModeling 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("remark")
- private String remark;
- /**
- * 授权key
- */
- @TableField("authorize_key")
- private String authorizeKey;
- /**
- * 授权期限
- */
- @TableField("authorize_start_time")
- private String authorizeStartTime;
- /**
- * 授权期限
- */
- @TableField("authorize_end_time")
- private String authorizeEndTime;
- @TableField("agent_id")
- private Integer agentId;
- /**
- * 创建人
- */
- @TableField("create_agent_id")
- private Integer createAgentId;
- @TableField(exist = false)
- private String createAgentName;
- @TableField(exist = false)
- private String agentName;
- @TableField(exist = false)
- private String useTypeStr;
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- @TableField("camera_sn")
- private String cameraSn;
- }
|