su_money_router.go 2.4 KB
package routers

import (
	"github.com/astaxie/beego"
	"gitlab.fjmaimaimai.com/linmadan/mmm-worth/pkg/port/beego/controllers"
)

func init() {
	/**********************************************素币流水******************************************/
	beego.Router("/su-money/operation", &controllers.SuMoneyController{}, "Post:OperationSuMoney")
	beego.Router("/su-money/su-money-transaction-records/:suMoneyTransactionRecordId", &controllers.SuMoneyController{}, "Get:GetSuMoneyTransactionRecord")
	beego.Router("/su-money/exchange", &controllers.SuMoneyController{}, "Post:ExchangeSuMoney")
	beego.Router("/su-money/search-su-money-transaction-record", &controllers.SuMoneyController{}, "Post:SearchSuMoneyTransactionRecord")
	beego.Router("/su-money/su-money-transaction-record-statistics", &controllers.SuMoneyController{}, "Post:SuMoneyTransactionRecordStatistics")

	/**********************************************现金池*******************************************/
	beego.Router("/cash-pool/input", &controllers.SuMoneyController{}, "POST:CashInput") 					// 现金池投入

	beego.Router("/cash-pool/", &controllers.SuMoneyController{}, "GET:ListExchangeActivities")  				// 返回兑换活动列表
	beego.Router("/cash-pool/:activityId", &controllers.SuMoneyController{}, "PUT:UpdateExchangeActivities")  		// 编辑兑换活动
	beego.Router("/cash-pool/", &controllers.SuMoneyController{}, "POST:CreateExchangeActivities")  			// 新增兑换活动
	beego.Router("/cash-pool/:activityId", &controllers.SuMoneyController{}, "DELETE:RemoveExchangeActivities") 	// 删除兑换活动

	beego.Router("/cash-pool/exchange-list", &controllers.SuMoneyController{}, "GET:ListExchangeList")				// 返回素币兑换清单
	beego.Router("/cash-pool/exchange-list", &controllers.SuMoneyController{}, "POST:CreateExchangeList")  			// 新增素币兑换清单
	beego.Router("/cash-pool/exchange-list/:personId", &controllers.SuMoneyController{}, "PUT:UpdateExchangeList")    			// 编辑素币兑换清单
	beego.Router("/cash-pool/exchange-list/:personId", &controllers.SuMoneyController{}, "DELETE:RemoveExchangeList")			// 删除素币兑换清单
	beego.Router("/cash-pool/exchange-list/export", &controllers.SuMoneyController{}, "POST:ExportExchangeList")			// 导出素币兑换清单
	beego.Router("/cash-pool/exchange-list/import", &controllers.SuMoneyController{}, "POST:ImportExchangeList")			// 导入素币兑换清单
}