AgentAuthorizeModeling.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.fdkankan.agent.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2025-03-17
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_agent_authorize_modeling")
  22. public class AgentAuthorizeModeling implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 本地算法授权
  26. */
  27. @TableId(value = "id", type = IdType.AUTO)
  28. private Integer id;
  29. /**
  30. * 客户名称
  31. */
  32. @TableField("customer_name")
  33. private String customerName;
  34. /**
  35. * 客户类别0直销,1经销
  36. */
  37. @TableField("customer_type")
  38. private Integer customerType;
  39. /**
  40. * 终端客户
  41. */
  42. @TableField("end_customer")
  43. private String endCustomer;
  44. /**
  45. * 使用类型
  46. */
  47. @TableField("use_type")
  48. private Integer useType;
  49. /**
  50. * 备注
  51. */
  52. @TableField("remark")
  53. private String remark;
  54. /**
  55. * 授权key
  56. */
  57. @TableField("authorize_key")
  58. private String authorizeKey;
  59. /**
  60. * 授权期限
  61. */
  62. @TableField("authorize_start_time")
  63. private String authorizeStartTime;
  64. /**
  65. * 授权期限
  66. */
  67. @TableField("authorize_end_time")
  68. private String authorizeEndTime;
  69. @TableField("agent_id")
  70. private Integer agentId;
  71. /**
  72. * 创建人
  73. */
  74. @TableField("create_agent_id")
  75. private Integer createAgentId;
  76. @TableField(exist = false)
  77. private String createAgentName;
  78. @TableField(exist = false)
  79. private String agentName;
  80. @TableField(exist = false)
  81. private String useTypeStr;
  82. @TableField("rec_status")
  83. @TableLogic(value = "A",delval = "I")
  84. private String recStatus;
  85. @TableField("create_time")
  86. private Date createTime;
  87. @TableField("update_time")
  88. private Date updateTime;
  89. @TableField("camera_sn")
  90. private String cameraSn;
  91. }