TencentActionSet.java 545 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. import java.io.Serializable;
  5. /**
  6. * @author chan
  7. * @className TencentActionSet
  8. * @description 数据源记录
  9. * @date 2020/12/16 6:52 下午
  10. */
  11. @Getter
  12. @Setter
  13. public class TencentActionSet extends BaseEntity implements Serializable {
  14. /**
  15. * 腾讯账号id
  16. */
  17. private Long userId;
  18. private String name;
  19. private Integer userActionSetId;
  20. /**
  21. * 推广账号类型
  22. */
  23. private String type;
  24. private String status;
  25. }