AuthorizeModeling.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.fdkankan.manage.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 2023-07-07
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_authorize_modeling")
  22. public class AuthorizeModeling 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("project_num")
  53. private String projectNum;
  54. /**
  55. * 备注
  56. */
  57. @TableField("remark")
  58. private String remark;
  59. /**
  60. * 授权key
  61. */
  62. @TableField("authorize_key")
  63. private String authorizeKey;
  64. /**
  65. * 授权期限
  66. */
  67. @TableField("authorize_time")
  68. private Integer authorizeTime;
  69. /**
  70. * 授权期限单位
  71. */
  72. @TableField("authorize_time_unit")
  73. private Integer authorizeTimeUnit;
  74. /**
  75. * 授权说明
  76. */
  77. @TableField("authorize_info")
  78. private String authorizeInfo;
  79. /**
  80. * 创建人
  81. */
  82. @TableField("sys_user_id")
  83. private Long sysUserId;
  84. @TableField("rec_status")
  85. @TableLogic(value = "A",delval = "I")
  86. private String recStatus;
  87. @TableField("create_time")
  88. private Date createTime;
  89. @TableField("update_time")
  90. private Date updateTime;
  91. }