approval.go 344 B

123456789101112131415
  1. package controllers
  2. type ApprovalCommon struct {
  3. BaseAuth
  4. }
  5. // @Title 获取审批列表接口
  6. // @Description 获取审批列表接口
  7. // @Param request body admin.LoginReq true "type json string"
  8. // @Success 200 {object} admin3.LoginResp
  9. // @router /list [get]
  10. func (this *ApprovalCommon) List() {
  11. this.OkDetailed("1", "获取成功")
  12. }