AdvertisementTencentView.java 895 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.cyksj.model.views;
  2. import com.ejlchina.searcher.bean.DbField;
  3. import com.ejlchina.searcher.bean.SearchBean;
  4. import lombok.Data;
  5. import java.util.Date;
  6. /**
  7. * @ClassName advertiserTencentVo
  8. * @Description 腾讯广告账号
  9. * @Author Huang yuanzhi
  10. * @Date 2022/8/5 13:41
  11. * @Version 1.0.0
  12. **/
  13. @Data
  14. @SearchBean( tables = " tencent_user tu left join tencent_action_set tas on tu.id = tas.user_id")
  15. public class AdvertisementTencentView {
  16. @DbField("tu.id")
  17. private Long id;
  18. /**
  19. * 推广账号id
  20. */
  21. @DbField("tu.account_id")
  22. private Long accountId;
  23. @DbField("tas.name")
  24. private String name;
  25. @DbField("tas.user_action_set_id")
  26. private Long userActionSetId;
  27. @DbField("tas.status")
  28. private String status;
  29. @DbField("tu.created_time")
  30. private Date createdTime;
  31. private static final long serialVersionUID = 1L;
  32. }