From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期二, 25 二月 2025 16:41:22 +0800 Subject: [PATCH] 淘宝转链接口更新 --- fanli/src/main/java/com/yeshi/fanli/dto/ad/DouYinDeviceActiveQueueDTO.java | 126 +++++++++++++++++++++--------------------- 1 files changed, 63 insertions(+), 63 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/ad/DouYinDeviceActiveQueueDTO.java b/fanli/src/main/java/com/yeshi/fanli/dto/ad/DouYinDeviceActiveQueueDTO.java index 4a3483b..ccab20c 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dto/ad/DouYinDeviceActiveQueueDTO.java +++ b/fanli/src/main/java/com/yeshi/fanli/dto/ad/DouYinDeviceActiveQueueDTO.java @@ -1,63 +1,63 @@ -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; + } +} -- Gitblit v1.8.0