You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
407 B
15 lines
407 B
package http |
|
|
|
import ( |
|
"context" |
|
"go-common/app/admin/main/up/model" |
|
"go-common/library/net/http/blademaster" |
|
) |
|
|
|
func commandRefreshUpRank(c *blademaster.Context) { |
|
httpQueryFunc(new(model.CommandCommonArg), |
|
func(context context.Context, arg interface{}) (res interface{}, err error) { |
|
return Svc.Crmservice.CommandRefreshUpRank(context, arg.(*model.CommandCommonArg)) |
|
}, |
|
"SignCheckTask")(c) |
|
}
|
|
|