AgentNewLog.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.fdkankan.ucenter.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.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Getter;
  9. import lombok.Setter;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author
  16. * @since 2022-11-23
  17. */
  18. @Getter
  19. @Setter
  20. @TableName("t_agent_new_log")
  21. public class AgentNewLog implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 代理商授权用户日志表
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. @TableField("agent_id")
  29. private Integer agentId;
  30. /**
  31. * 0专业会员,1高级会员,2场景下载
  32. */
  33. @TableField("type")
  34. private Integer type;
  35. /**
  36. * 授权对象id
  37. */
  38. @TableField("user_id")
  39. private Long userId;
  40. /**
  41. * 授权次数
  42. */
  43. @TableField("count")
  44. private Integer count;
  45. @TableField("create_time")
  46. private Date createTime;
  47. @TableField("update_time")
  48. private Date updateTime;
  49. /**
  50. * 0 经销商授权,1经销商续费,2官网自购,3平台授权
  51. */
  52. @TableField("give_type")
  53. private Integer giveType;
  54. }