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.
44 lines
989 B
44 lines
989 B
/* |
|
* @desc:岗位管理 |
|
* |
|
* |
|
* @Date: 2022/4/7 23:12 |
|
*/ |
|
|
|
package controller |
|
|
|
import ( |
|
"context" |
|
"tyj_admin/api/v1/system" |
|
"tyj_admin/internal/service" |
|
) |
|
|
|
var Post = postController{} |
|
|
|
type postController struct { |
|
BaseController |
|
} |
|
|
|
// List 岗位列表 |
|
func (c *postController) List(ctx context.Context, req *system.PostSearchReq) (res *system.PostSearchRes, err error) { |
|
res, err = service.Post().List(ctx, req) |
|
return |
|
} |
|
|
|
// Add 添加岗位 |
|
func (c *postController) Add(ctx context.Context, req *system.PostAddReq) (res *system.PostAddRes, err error) { |
|
err = service.Post().Add(ctx, req) |
|
return |
|
} |
|
|
|
// Edit 修改岗位 |
|
func (c *postController) Edit(ctx context.Context, req *system.PostEditReq) (res *system.PostEditRes, err error) { |
|
err = service.Post().Edit(ctx, req) |
|
return |
|
} |
|
|
|
// Delete 删除岗位 |
|
func (c *postController) Delete(ctx context.Context, req *system.PostDeleteReq) (res *system.PostDeleteRes, err error) { |
|
err = service.Post().Delete(ctx, req.Ids) |
|
return |
|
}
|
|
|