| | |
| | | package com.yeshi.fanli.dto.ad;
|
| | |
|
| | | /**
|
| | | * 抖音广告与设备处理队列
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | public class DouYinDeviceActiveQueueDTO {
|
| | | public final static int TYPE_AD = 1;
|
| | | public final static int TYPE_DEVICE = 2;
|
| | |
|
| | | private int type;
|
| | | private String aid;
|
| | | private String device;
|
| | | private int platform;
|
| | | |
| | | public DouYinDeviceActiveQueueDTO() {
|
| | | }
|
| | |
|
| | | public DouYinDeviceActiveQueueDTO(int type, String aid) {
|
| | | this.type = type;
|
| | | this.aid = aid;
|
| | | }
|
| | |
|
| | | public DouYinDeviceActiveQueueDTO(int type, String device, int platform) {
|
| | | this.type = type;
|
| | | this.device = device;
|
| | | this.platform = platform;
|
| | | }
|
| | |
|
| | | public int getPlatform() {
|
| | | return platform;
|
| | | }
|
| | |
|
| | | public void setPlatform(int platform) {
|
| | | this.platform = platform;
|
| | | }
|
| | |
|
| | | public int getType() {
|
| | | return type;
|
| | | }
|
| | |
|
| | | public void setType(int type) {
|
| | | this.type = type;
|
| | | }
|
| | |
|
| | | public String getAid() {
|
| | | return aid;
|
| | | }
|
| | |
|
| | | public void setAid(String aid) {
|
| | | this.aid = aid;
|
| | | }
|
| | |
|
| | | public String getDevice() {
|
| | | return device;
|
| | | }
|
| | |
|
| | | public void setDevice(String device) {
|
| | | this.device = device;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.dto.ad; |
| | | |
| | | /** |
| | | * 抖音广告与设备处理队列 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | public class DouYinDeviceActiveQueueDTO { |
| | | public final static int TYPE_AD = 1; |
| | | public final static int TYPE_DEVICE = 2; |
| | | |
| | | private int type; |
| | | private String callback; |
| | | private String device; |
| | | private int platform; |
| | | |
| | | public DouYinDeviceActiveQueueDTO() { |
| | | } |
| | | |
| | | public DouYinDeviceActiveQueueDTO(int type, String callback) { |
| | | this.type = type; |
| | | this.callback = callback; |
| | | } |
| | | |
| | | public DouYinDeviceActiveQueueDTO(int type, String device, int platform) { |
| | | this.type = type; |
| | | this.device = device; |
| | | this.platform = platform; |
| | | } |
| | | |
| | | public int getPlatform() { |
| | | return platform; |
| | | } |
| | | |
| | | public void setPlatform(int platform) { |
| | | this.platform = platform; |
| | | } |
| | | |
| | | public int getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(int type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getDevice() { |
| | | return device; |
| | | } |
| | | |
| | | public void setDevice(String device) { |
| | | this.device = device; |
| | | } |
| | | |
| | | public String getCallback() { |
| | | return callback; |
| | | } |
| | | |
| | | public void setCallback(String callback) { |
| | | this.callback = callback; |
| | | } |
| | | } |