KuaishouLaunchTargetTemplate.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package com.ruixuan.launch.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruixuan.common.annotation.Excel;
  4. import lombok.Data;
  5. import java.util.Date;
  6. /**
  7. * 账户下所属定向信息对象 kuaishou_launch_target_template
  8. *
  9. * @author ruoyi
  10. * @date 2022-07-05
  11. */
  12. @Data
  13. public class KuaishouLaunchTargetTemplate {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * $column.columnComment
  17. */
  18. private Long id;
  19. /**
  20. * 账户ID
  21. */
  22. @Excel(name = "账户ID")
  23. private Long accountId;
  24. /**
  25. * 定向包名
  26. */
  27. @Excel(name = "定向包名")
  28. private String targetName;
  29. /**
  30. * 1智能优选,2自定义
  31. */
  32. @Excel(name = " 1智能优选,2自定义")
  33. private String targetType;
  34. /**
  35. * 地域
  36. */
  37. @Excel(name = "地域")
  38. private String region;
  39. /**
  40. * 地域类型 0:不限 1:指定地区 3:城市等级
  41. */
  42. private String regionType;
  43. /**
  44. * 自定义年龄段
  45. */
  46. @Excel(name = "自定义年龄段")
  47. private String age;
  48. /**
  49. * 性别 1:女性, 2:男性, 0:不限
  50. */
  51. @Excel(name = "性别 1:女性, 2:男性, 0:不限")
  52. private Long genderType;
  53. /**
  54. * 人群包定向
  55. */
  56. @Excel(name = "人群包定向")
  57. private String population;
  58. private String populationName;
  59. private String excludePopulationName;
  60. /**
  61. * 人群包排除
  62. */
  63. @Excel(name = "人群包排除")
  64. private String excludePopulation;
  65. /**
  66. * 付费人群包 id
  67. */
  68. @Excel(name = "付费人群包 id")
  69. private String paidAudience;
  70. /**
  71. * 行为类型 0:关注 1:视频互动 2:直播互动
  72. */
  73. @Excel(name = "行为类型 0:关注 1:视频互动 2:直播互动")
  74. private String behaviorList;
  75. /**
  76. * 快手网红信息
  77. */
  78. @Excel(name = "快手网红信息")
  79. private String fansStarList;
  80. /**
  81. * 快手网红信息
  82. */
  83. @Excel(name = "快手网红信息")
  84. private String purchaseIntention;
  85. /**
  86. * 更新时间
  87. */
  88. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  89. private Date updateTime;
  90. /**
  91. * 创建时间
  92. */
  93. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  94. private Date createTime;
  95. }