Skip to content

Commit

Permalink
【vivo】feature: 推广服务/广告计划、广告组、广告管理
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyq0719 committed Feb 8, 2022
1 parent 3e50d87 commit ed393ef
Show file tree
Hide file tree
Showing 79 changed files with 10,258 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static void parseBaseEntity(Map<String, List<BaseEntity>> map, BaseEntity
baseEntity.setType(TYPE_MAP.get(type));
return;
}
if (OBJECT_TYPE_SET.contains(type)) {
if (OBJECT_TYPE_SET.contains(type) || type.endsWith("Dto")) {
String className = GeneratorUtils.toUpperCaseFirstOne(baseEntity.getCamelProperty() + "Struct");

SingleFileEntity sfe = new SingleFileEntity();
Expand Down Expand Up @@ -171,7 +171,7 @@ public static void parseBaseEntity(Map<String, List<BaseEntity>> map, BaseEntity
baseEntity.setType(TYPE_MAP.get(type));
return;
}
if (OBJECT_TYPE_SET.contains(type)) {
if (OBJECT_TYPE_SET.contains(type) || type.endsWith("Dto")) {
String className;
if ("items".equals(camelProperty)) {
className = GeneratorUtils.toUpperCaseFirstOne(classPrefix + "ItemsStruct");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

import java.util.List;

/**
* @author hyq0719
* @description vivo商业开放平台——账号服务
*/
public class AccountServiceApi extends AbstractVivoApi {
private volatile AccountFetch accountFetch;
private volatile AccountFetchAccount accountFetchAccount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

import java.util.List;

/**
* @author hyq0719
* @description vivo商业开放平台——数据接入
*/
public class DataAccessApi extends AbstractVivoApi {
private volatile AdvertiserBehaviorUpload advertiserBehaviorUpload;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
import java.util.List;

/**
* vivo商业开放平台——数据洞察api
* @author hyq0719
* @description vivo商业开放平台——数据洞察
*/
public class DataQueryApi extends AbstractVivoApi {
private volatile AdstatementSummaryQuery adstatementSummaryQuery;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
import java.util.List;
import java.util.Map;

/**
* @author hyq0719
* @description vivo商业开放平台——人群管理
*/
public class DmpTagApi extends AbstractVivoApi {
private volatile AdDmpTagUpload adDmpTagUpload;
private volatile AdDmpTagCreate adDmpTagCreate;
Expand Down
Loading

0 comments on commit ed393ef

Please sign in to comment.