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.
20 lines
463 B
20 lines
463 B
package http |
|
|
|
/**import ( |
|
"github.com/pkg/errors" |
|
|
|
"go-common/app/service/openplatform/ticket-item/model" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// @params ParamID |
|
// @router get /openplatform/internal/ticket/item/getbulletins |
|
// @response BulletinInfo |
|
func getBulletins(c *bm.Context) { |
|
arg := new(model.ParamID) |
|
if err := c.Bind(arg); err != nil { |
|
errors.Wrap(err, "参数验证失败") |
|
return |
|
} |
|
c.JSON(itemSvc.GetBulletins(c, &arg.ID)) |
|
}**/
|
|
|