- SendFilesToStores

This commit is contained in:
gazebo
2018-10-10 09:58:31 +08:00
parent b325ad7ca7
commit 1b15b864a8
9 changed files with 198 additions and 4 deletions

View File

@@ -95,6 +95,14 @@ func init() {
MethodParams: param.Make(),
Params: nil})
beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:FinancialController"] = append(beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:FinancialController"],
beego.ControllerComments{
Method: "SendFilesToStores",
Router: `/SendFilesToStores`,
AllowHTTPMethods: []string{"post","get"},
MethodParams: param.Make(),
Params: nil})
beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"] = append(beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"],
beego.ControllerComments{
Method: "CreateWaybillOnProviders",

View File

@@ -56,6 +56,11 @@ func init() {
&controllers.TaskController{},
),
),
beego.NSNamespace("/financial",
beego.NSInclude(
&controllers.FinancialController{},
),
),
)
beego.AddNamespace(ns)