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; /** *

* *

* * @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; }