| | |
| | | public final static int TYPE_DEVICE = 2;
|
| | |
|
| | | private int type;
|
| | | private String aid;
|
| | | private String callback;
|
| | | private String device;
|
| | | private int platform;
|
| | | |
| | |
|
| | | public DouYinDeviceActiveQueueDTO() {
|
| | | }
|
| | |
|
| | | public DouYinDeviceActiveQueueDTO(int type, String aid) {
|
| | | public DouYinDeviceActiveQueueDTO(int type, String callback) {
|
| | | this.type = type;
|
| | | this.aid = aid;
|
| | | this.callback = callback;
|
| | | }
|
| | |
|
| | | public DouYinDeviceActiveQueueDTO(int type, String device, int platform) {
|
| | |
| | | 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;
|
| | | }
|
| | |
|
| | | public String getCallback() {
|
| | | return callback;
|
| | | }
|
| | |
|
| | | public void setCallback(String callback) {
|
| | | this.callback = callback;
|
| | | }
|
| | | }
|