operations.couponSend.js
876 Bytes
/**
* Created by ty on 2016/6/23.
* 发券管理
*/
module.exports={
namespace:"couponSend",
apis:{
queryList:{
title: "发券列表",
url: '/couponSendManager/queryList',
params: [
{name: 'name', type: 'string'},//名称
{name: 'page', type: 'Number'},
{name: 'size', type: 'Number'}
]
},
addOrUpdate:{
title: "添加/修改发券",
url: '/couponSendManager/addOrUpdate',
params: [
{name: 'id', type: 'Number'},//主键
{name: 'name', type: 'string'},//名称
{name: 'creator', type: 'string'},//创建人
{name: 'couponsIds', type: 'string'},//券列表
{name: 'status', type: 'Number'}//状态
]
}
}
}