|
@@ -48,6 +48,7 @@ public class KuaiShouMaterialControer {
|
|
*/
|
|
*/
|
|
@PostMapping(value = "/getNewVideoList")
|
|
@PostMapping(value = "/getNewVideoList")
|
|
public JSONObject getNewVideo(@RequestBody JSONObject requestJson) {
|
|
public JSONObject getNewVideo(@RequestBody JSONObject requestJson) {
|
|
|
|
+ log.info("获取上新素材入参:{}", requestJson);
|
|
JSONObject returnJson = new JSONObject();
|
|
JSONObject returnJson = new JSONObject();
|
|
try {
|
|
try {
|
|
if (Check.isNull(requestJson)) {
|
|
if (Check.isNull(requestJson)) {
|
|
@@ -115,6 +116,7 @@ public class KuaiShouMaterialControer {
|
|
*/
|
|
*/
|
|
@PostMapping(value = "/getHistoryVideoList")
|
|
@PostMapping(value = "/getHistoryVideoList")
|
|
public JSONObject getHistoryVideoList(@RequestBody JSONObject requestJson) {
|
|
public JSONObject getHistoryVideoList(@RequestBody JSONObject requestJson) {
|
|
|
|
+ log.info("获取历史素材入参:{}", requestJson);
|
|
JSONObject returnJson = new JSONObject();
|
|
JSONObject returnJson = new JSONObject();
|
|
try {
|
|
try {
|
|
if (Check.isNull(requestJson)) {
|
|
if (Check.isNull(requestJson)) {
|
|
@@ -191,6 +193,7 @@ public class KuaiShouMaterialControer {
|
|
*/
|
|
*/
|
|
@PostMapping(value = "/getHistoryTopVideoList")
|
|
@PostMapping(value = "/getHistoryTopVideoList")
|
|
public JSONObject getHistoryTopVideoList(@RequestBody JSONObject requestJson) {
|
|
public JSONObject getHistoryTopVideoList(@RequestBody JSONObject requestJson) {
|
|
|
|
+ log.info("获取历史Top素材入参:{}", requestJson);
|
|
JSONObject returnJson = new JSONObject();
|
|
JSONObject returnJson = new JSONObject();
|
|
try {
|
|
try {
|
|
if (Check.isNull(requestJson)) {
|
|
if (Check.isNull(requestJson)) {
|
|
@@ -260,6 +263,7 @@ public class KuaiShouMaterialControer {
|
|
*/
|
|
*/
|
|
@PostMapping(value = "/getCreateZeroVideoList")
|
|
@PostMapping(value = "/getCreateZeroVideoList")
|
|
public JSONObject getHistoryCreateVideoList(@RequestBody JSONObject requestJson) {
|
|
public JSONObject getHistoryCreateVideoList(@RequestBody JSONObject requestJson) {
|
|
|
|
+ log.info("获取关联创意数为0素材入参:{}", requestJson);
|
|
JSONObject returnJson = new JSONObject();
|
|
JSONObject returnJson = new JSONObject();
|
|
try {
|
|
try {
|
|
if (Check.isNull(requestJson)) {
|
|
if (Check.isNull(requestJson)) {
|