1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package io.better.toutiao.dto.delivery.group;
import io.better.toutiao.dto.resp.PageRespDTO;
import lombok.Data;
/**
* @author better create in 2019-04-29 14:21
*/
@Data
public class AdvertisingGroupRespDTO {
/**
* 广告组ID
*/
private Long id;
/**
* 广告组名称
*/
private String name;
/**
* 广告组预算
*/
private Integer budget;
/**
* 广告组预算类型
*/
private String budgetMode;
/**
* 广告组推广目的
*
* @see io.better.toutiao.enums.LandingType
*/
private String landingType;
/**
* 广告组时间戳,用于更新时提交,服务端判断是否基于最新信息修改
*/
private String modifyTime;
/**
* 广告组状态
*
* @see io.better.toutiao.enums.AdvertisingGroupStatus
*/
private String status;
/**
* 广告组创建时间
*/
private String campaignCreateTime;
/**
* 广告组修改时间
*/
private String campaignModifyTime;
/**
* 分页信息
*/
private PageRespDTO pageInfo;
/**
* 第三方唯一键
*/
private String uniqueFk;
}