RptAdvertiserHour.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package com.cloudcross.ssp.advertiser.model;
  2. import java.util.Date;
  3. /**
  4. * 对应数据库的t_rpt_advertiser_hour表
  5. * @author yzl
  6. *
  7. */
  8. public class RptAdvertiserHour {
  9. //主键
  10. private Long id;
  11. //运营商id
  12. private Long AdvertiserId;
  13. //日期
  14. private Date date;
  15. //小时
  16. private Integer hour;
  17. //订单id
  18. private Long orderId;
  19. //活动id
  20. private Long campaignId;
  21. //投放Id
  22. private Long adgroupId;
  23. //创意Id
  24. private Long bannerId;
  25. //曝光数
  26. private Long impression;
  27. //点击数
  28. private Long click;
  29. //到达数
  30. private Long visit;
  31. //转化数
  32. private Long conversion;
  33. //ecpm
  34. private Float ecpm;
  35. //消费
  36. private Long consume;
  37. //一天总的到达数
  38. private Long totalVisit;
  39. //一天总的转化数
  40. private Long totalConversion;
  41. //一天总的曝光数
  42. private Long totalImpression;
  43. //一天总的点击数
  44. private Long totalClick;
  45. //一天总的ecpm
  46. private Long totalEcpm;
  47. //一天的消费数
  48. private Long totalConsume;
  49. public Long getId() {
  50. return id;
  51. }
  52. public void setId(Long id) {
  53. this.id = id;
  54. }
  55. public Long getAdvertiserId() {
  56. return AdvertiserId;
  57. }
  58. public void setAdvertiserId(Long advertiserId) {
  59. AdvertiserId = advertiserId;
  60. }
  61. public Date getDate() {
  62. return date;
  63. }
  64. public void setDate(Date date) {
  65. this.date = date;
  66. }
  67. public Integer getHour() {
  68. return hour;
  69. }
  70. public void setHour(Integer hour) {
  71. this.hour = hour;
  72. }
  73. public Long getOrderId() {
  74. return orderId;
  75. }
  76. public void setOrderId(Long orderId) {
  77. this.orderId = orderId;
  78. }
  79. public Long getCampaignId() {
  80. return campaignId;
  81. }
  82. public void setCampaignId(Long campaignId) {
  83. this.campaignId = campaignId;
  84. }
  85. public Long getAdgroupId() {
  86. return adgroupId;
  87. }
  88. public void setAdgroupId(Long adgroupId) {
  89. this.adgroupId = adgroupId;
  90. }
  91. public Long getBannerId() {
  92. return bannerId;
  93. }
  94. public void setBannerId(Long bannerId) {
  95. this.bannerId = bannerId;
  96. }
  97. public Long getImpression() {
  98. return impression;
  99. }
  100. public void setImpression(Long impression) {
  101. this.impression = impression;
  102. }
  103. public Long getClick() {
  104. return click;
  105. }
  106. public void setClick(Long click) {
  107. this.click = click;
  108. }
  109. public Long getVisit() {
  110. return visit;
  111. }
  112. public void setVisit(Long visit) {
  113. this.visit = visit;
  114. }
  115. public Long getConversion() {
  116. return conversion;
  117. }
  118. public void setConversion(Long conversion) {
  119. this.conversion = conversion;
  120. }
  121. public Float getEcpm() {
  122. return ecpm;
  123. }
  124. public void setEcpm(Float ecpm) {
  125. this.ecpm = ecpm;
  126. }
  127. public Long getConsume() {
  128. return consume;
  129. }
  130. public void setConsume(Long consume) {
  131. this.consume = consume;
  132. }
  133. public Long getTotalVisit() {
  134. return totalVisit;
  135. }
  136. public void setTotalVisit(Long totalVisit) {
  137. this.totalVisit = totalVisit;
  138. }
  139. public Long getTotalConversion() {
  140. return totalConversion;
  141. }
  142. public void setTotalConversion(Long totalConversion) {
  143. this.totalConversion = totalConversion;
  144. }
  145. public Long getTotalImpression() {
  146. return totalImpression;
  147. }
  148. public void setTotalImpression(Long totalImpression) {
  149. this.totalImpression = totalImpression;
  150. }
  151. public Long getTotalClick() {
  152. return totalClick;
  153. }
  154. public void setTotalClick(Long totalClick) {
  155. this.totalClick = totalClick;
  156. }
  157. public Long getTotalEcpm() {
  158. return totalEcpm;
  159. }
  160. public void setTotalEcpm(Long totalEcpm) {
  161. this.totalEcpm = totalEcpm;
  162. }
  163. public Long getTotalConsume() {
  164. return totalConsume;
  165. }
  166. public void setTotalConsume(Long totalConsume) {
  167. this.totalConsume = totalConsume;
  168. }
  169. @Override
  170. public String toString() {
  171. return "RptAdvertiserHour [id=" + id + ", AdvertiserId=" + AdvertiserId
  172. + ", date=" + date + ", hour=" + hour + ", orderId=" + orderId
  173. + ", campaignId=" + campaignId + ", adgroupId=" + adgroupId
  174. + ", bannerId=" + bannerId + ", impression=" + impression
  175. + ", click=" + click + ", visit=" + visit + ", conversion="
  176. + conversion + ", ecpm=" + ecpm + ", consume=" + consume
  177. + ", totalVisit=" + totalVisit + ", totalConversion="
  178. + totalConversion + ", totalImpression=" + totalImpression
  179. + ", totalClick=" + totalClick + ", totalEcpm=" + totalEcpm
  180. + ", totalConsume=" + totalConsume + "]";
  181. }
  182. }