Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // Create 添加活动 // @Tags SmsFlashPromotionController // @Router /flash [post] Create(*gin.Context) // Update 编辑活动 // @Tags SmsFlashPromotionController // @Router /flash/update/{id} [post] Update(*gin.Context) // UpdateStatus 编辑活动 // @Tags SmsFlashPromotionController // @Router /flash/update/status/{id} [post] UpdateStatus(*gin.Context) // Delete 删除活动 // @Tags SmsFlashPromotionController // @Router /flash/delete/{id} [post] Delete(*gin.Context) // List 根据活动名称分页查询 // @Tags SmsFlashPromotionController // @Router /flash/list [get] List(*gin.Context) // GetItem 获取活动详情 // @Tags SmsFlashPromotionController // @Router /flash/{id} [get] GetItem(*gin.Context) // contains filtered or unexported methods }
Click to show internal directories.
Click to hide internal directories.