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

* *

* * @author * @since 2023-07-07 */ @Getter @Setter @TableName("t_authorize_modeling") public class AuthorizeModeling 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; /** * 授权key */ @TableField("authorize_key") private String authorizeKey; /** * 授权期限 */ @TableField("authorize_time") private Integer authorizeTime; /** * 授权期限单位 */ @TableField("authorize_time_unit") private Integer authorizeTimeUnit; /** * 授权说明 */ @TableField("authorize_info") private String authorizeInfo; /** * 创建人 */ @TableField("sys_user_id") private Long sysUserId; @TableField("rec_status") @TableLogic(value = "A",delval = "I") private String recStatus; @TableField("create_time") private Date createTime; @TableField("update_time") private Date updateTime; }