2019-07-09 10:58:29 +08:00

30 lines
715 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
from __future__ import absolute_import
"""
广告接口
get (返回广告明细) paramsgameidlocalidoutputad_title,ad_body,ad_image,ad_url
post新增广告定义 paramsname,gameid,localid,start_time,end_time,ad_nums,ad_title,ad_body,ad_image,ad_url,ad_sort,status=unapproved, output1,0
put更新广告配置paramsname,gameid,localid,start_time,end_time,ad_nums,ad_title,ad_body,ad_image,ad_url,ad_sortoutput1,0
delete删除定义的广告paramsoutput1,0
"""
class AD():
def __init__(self):
pass
def get(self):
pass
def post(self):
pass
def put(self):
pass
def delete(self):
pass