cash_pool_router.go 1.7 KB
package routers

// TODO
func init() {
	///*****************************************现金池**********************************/
	//beego.Router("/cash_pool/input", &controllers.ConfigController{}, "POST:CashInput") 					// 现金池投入
	//
	///*****************************************兑换活动*********************************/
	//beego.Router("/cashPool-pool/", &controllers.ConfigController{}, "GET:ListExchangeActivities")  				// 返回兑换活动列表
	//beego.Router("/cashPool-pool/:aid", &controllers.ConfigController{}, "PUT:UpdateExchangeActivities")  		// 编辑兑换活动
	//beego.Router("/cashPool-pool/", &controllers.ConfigController{}, "POST:CreateExchangeActivities")  			// 新增兑换活动
	//beego.Router("/cashPool-pool/:aid", &controllers.ConfigController{}, "DELETE:DeleteExchangeActivities") 	// 删除兑换活动
	//
	///*****************************************兑换素币清单****************************/
	//beego.Router("/cashPool-pool/exchange", &controllers.ConfigController{}, "GET:ListExchangeList")				// 返回素币兑换清单
	//beego.Router("/cashPool-pool/exchange", &controllers.ConfigController{}, "POST:CreateExchangeList")  			// 新增素币兑换清单
	//beego.Router("/cashPool-pool/exchange/:eid", &controllers.ConfigController{}, "PUT:UpdateExchangeList")    			// 编辑素币兑换清单
	//beego.Router("/cashPool-pool/exchange/:eid", &controllers.ConfigController{}, "DELETE:RemoveExchangeList")			// 删除素币兑换清单
	//beego.Router("/cashPool-pool/export", &controllers.ConfigController{}, "POST:ExportExchangeList")			// 导出素币兑换清单
	//beego.Router("/cashPool-pool/import", &controllers.ConfigController{}, "POST:ImportExchangeList")			// 导入素币兑换清单
}