| 12345678910111213141516171819202122232425262728293031323334 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- /**
- * @author chan
- * @className TencentActionSet
- * @description 数据源记录
- * @date 2020/12/16 6:52 下午
- */
- @Getter
- @Setter
- public class TencentActionSet extends BaseEntity implements Serializable {
- /**
- * 腾讯账号id
- */
- private Long userId;
- private String name;
- private Integer userActionSetId;
- /**
- * 推广账号类型
- */
- private String type;
- private String status;
- }
|