| 12345678910111213141516171819202122232425 |
- /*
- * @desc:岗位管理
- * @company:云南奇讯科技有限公司
- * @Author: yixiaohu
- * @Date: 2022/4/7 23:12
- */
- package controller
- import (
- "context"
- "github.com/tiger1103/gfast/v3/api/v1/system"
- "github.com/tiger1103/gfast/v3/internal/app/system/service"
- )
- var Post = postController{}
- type postController struct {
- BaseController
- }
- func (c *postController) List(ctx context.Context, req *system.PostSearchReq) (res *system.PostSearchRes, err error) {
- res, err = service.Post().List(ctx, req)
- return
- }
|