|
@@ -483,6 +483,7 @@ public class AiKuaishouProjectCreateCreativeServiceImpl implements IAiKuaishouPr
|
|
|
AiKuaishouProgramCreativeLevelOperationRecord record = JSONObject.parseObject(programJson.toJSONString(), AiKuaishouProgramCreativeLevelOperationRecord.class);
|
|
|
BeanUtils.copyProperties(strategy, record);
|
|
|
record.setStatus(code);
|
|
|
+ record.setAccountId(strategy.getAccountId());
|
|
|
record.setAiStrategyUuid(strategy.getStrategyUuid());
|
|
|
record.setMessage(message);
|
|
|
record.setOperationType(1);
|
|
@@ -749,7 +750,7 @@ public class AiKuaishouProjectCreateCreativeServiceImpl implements IAiKuaishouPr
|
|
|
//应用商店列表
|
|
|
unitParams.put("ocpx_action_type", strategy.getOcpxActionType());
|
|
|
//出价
|
|
|
- if (null != strategy.getBid() && !"0".equals(strategy.getBid())) {
|
|
|
+ if (!Check.isNull(strategy.getBid()) && !"0".equals(strategy.getBid())) {
|
|
|
Long bid = getBidByString(strategy.getBid());
|
|
|
unitParams.put("bid", bid);
|
|
|
}
|