Meizhuo / MZ-Server

The Backend of Dongguan Skills Training
2 stars 0 forks source link

广告模块 #41

Closed Jayin closed 10 years ago

Jayin commented 10 years ago

Advertisement

广告

字段名 描述
id 广告id
description 广告描述
url 广告链接
pic_url 图片链接
display 是否显示, 0 否 1 是

权限 只有管理员才能发广告

获得当前的广告信息

GET /home/ad/current

Response

{
    "code":20000,
    "response":
    [
        {
               "id": 1,  //广告id
               "description": 1,  //描述
               "url": "/mz/xxx", //相对路径
               "pic_url": 1, // 图片链接
         },
        //....
    ]
}

增加一条广告信息

POST /home/ad/post

字段 描述 是否必须
description 广告描述 Y
url 广告链接 Y
pic_url 图片链接 Y
display 默认0 N

Response

{
    "code":20000,
    "response":
    [
        {
               "id": 1,  //广告id
               "description": 1,  //描述
               "url": "/mz/xxx", //相对路径
               "pic_url": 1, // 图片链接
         },
        //....
    ]
}

上架(显示)一条广告

POST /home/ad/diplayAd

字段 描述 是否必须
ad_id 广告id Y

Response

{
    "code":20000,
    "response":"operate successfully";
}

下架(不显示)一条广告

POST /home/ad/undisplayAd

字段 描述 是否必须
ad_id 广告id Y

Response

{
    "code":20000,
    "response":"operate successfully";
}

删除一条广告

POST /home/ad/delete

字段 描述 是否必须
ad_id 广告id Y

Response

{
    "code":20000,
    "response":"operate successfully";
}
Jayin commented 10 years ago

已部署表结构