marketing.CouponShopInfo.js 932 Bytes

/**
 * Created by yoho on 2016/6/21.
 */
module.exports = {
    namespace: "CouponShopInfo",
    apis: {
        /************************************优惠券店铺信息*************************************/
        queryList: {
            title: "优惠券店铺信息",
            url: '/CouponShopInfoRest/queryList',
            params: {
                shopsId: {type: Number},
                page: {type: Number},
                size: {type: Number}
            }
        },
        add: {
            title: "新增优惠券店铺信息",
            url: '/CouponShopInfoRest/add',
            params: {
                shopName: {type: String},
                shopsId: {type: Number},
            }
        },
        delete: {
            title: "删除优惠券店铺",
            url: '/CouponShopInfoRest/delete',
            params: {
                shopsId: {type: String}
            }
        }

    }
};