package com.yeshi.fanli.util.goods.douyin.vo;
|
|
/**
|
* @author hxh
|
* @title: DYAggregateH5Filter
|
* @description: 聚合页条件
|
* @date 2022/9/28 14:13
|
*/
|
public class DYAggregateH5Filter {
|
|
|
/**
|
* device : {"idfa":"","idfa_md5":"","idfv":"","imei":"","imei_md5":"","oaid":"","oaid_md5":"","android_id":"","android_id_md5":"","os":"android"}
|
* external_info : _123123
|
* material_id : 10000
|
*/
|
|
/**
|
* 设备信息字段, 如需个性化聚合⻚聚合
|
* ⻚,请填写
|
**/
|
private DeviceBean device;
|
/**
|
* ⾃定义字段,只允许 数字、字⺟和
|
* _,限制⻓度为20
|
**/
|
private String external_info;
|
/**
|
* 聚合⻚类型枚举值
|
* 10000 抖⾳⽀付1分购
|
* 40004 个护新⼈专区
|
* 20000 百亿补贴
|
* 60000 秒杀频道
|
* 50012 ⼤家电
|
* 50013 包
|
* 50004 个护
|
* 50015 睡⾐
|
* 50016 家居
|
* 50017 帽⼦
|
* 50018 奢侈品
|
* 50019 腕表
|
* 50020 鞋-运动品牌
|
* 50021 ⼥鞋
|
* 50022 单鞋
|
* 50023 ⽪鞋
|
* 50024 服饰-运动品牌
|
* 50025 美妆
|
* 50000 综合
|
* 50026 饰品
|
* 50002 美容护肤
|
* 50003 零⻝
|
* 50005 咖啡
|
* 50006 童装
|
* 50008 内⾐
|
* 50009 粮⽶油⾯
|
**/
|
private String material_id;
|
|
private String product_url;
|
|
public DeviceBean getDevice() {
|
return device;
|
}
|
|
public void setDevice(DeviceBean device) {
|
this.device = device;
|
}
|
|
public String getExternal_info() {
|
return external_info;
|
}
|
|
public void setExternal_info(String external_info) {
|
this.external_info = external_info;
|
}
|
|
public String getMaterial_id() {
|
return material_id;
|
}
|
|
public void setMaterial_id(String material_id) {
|
this.material_id = material_id;
|
}
|
|
public String getProduct_url() {
|
return product_url;
|
}
|
|
public void setProduct_url(String product_url) {
|
this.product_url = product_url;
|
}
|
|
public static class DeviceBean {
|
/**
|
* idfa :
|
* idfa_md5 :
|
* idfv :
|
* imei :
|
* imei_md5 :
|
* oaid :
|
* oaid_md5 :
|
* android_id :
|
* android_id_md5 :
|
* os : android
|
*/
|
|
private String idfa;
|
private String idfa_md5;
|
private String idfv;
|
private String imei;
|
private String imei_md5;
|
private String oaid;
|
private String oaid_md5;
|
private String android_id;
|
private String android_id_md5;
|
private String os;
|
|
public String getIdfa() {
|
return idfa;
|
}
|
|
public void setIdfa(String idfa) {
|
this.idfa = idfa;
|
}
|
|
public String getIdfa_md5() {
|
return idfa_md5;
|
}
|
|
public void setIdfa_md5(String idfa_md5) {
|
this.idfa_md5 = idfa_md5;
|
}
|
|
public String getIdfv() {
|
return idfv;
|
}
|
|
public void setIdfv(String idfv) {
|
this.idfv = idfv;
|
}
|
|
public String getImei() {
|
return imei;
|
}
|
|
public void setImei(String imei) {
|
this.imei = imei;
|
}
|
|
public String getImei_md5() {
|
return imei_md5;
|
}
|
|
public void setImei_md5(String imei_md5) {
|
this.imei_md5 = imei_md5;
|
}
|
|
public String getOaid() {
|
return oaid;
|
}
|
|
public void setOaid(String oaid) {
|
this.oaid = oaid;
|
}
|
|
public String getOaid_md5() {
|
return oaid_md5;
|
}
|
|
public void setOaid_md5(String oaid_md5) {
|
this.oaid_md5 = oaid_md5;
|
}
|
|
public String getAndroid_id() {
|
return android_id;
|
}
|
|
public void setAndroid_id(String android_id) {
|
this.android_id = android_id;
|
}
|
|
public String getAndroid_id_md5() {
|
return android_id_md5;
|
}
|
|
public void setAndroid_id_md5(String android_id_md5) {
|
this.android_id_md5 = android_id_md5;
|
}
|
|
public String getOs() {
|
return os;
|
}
|
|
public void setOs(String os) {
|
this.os = os;
|
}
|
}
|
}
|