report

package
v0.5.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 30, 2020 License: MIT Imports: 11 Imported by: 0

Documentation

Overview

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Copyright 2019-2020 Axetroy. All rights reserved. MIT license.

Index

Constants

This section is empty.

Variables

View Source
var GetListByAdminRouter = router.Handler(func(c router.Context) {
	var (
		input QueryAdmin
	)

	c.ResponseFunc(c.ShouldBindQuery(&input), func() schema.Response {
		return GetListByAdmin(helper.NewContext(&c), input)
	})
})
View Source
var GetReportByAdminRouter = router.Handler(func(c router.Context) {
	id := c.Param("report_id")

	c.ResponseFunc(nil, func() schema.Response {
		return GetReportByAdmin(helper.NewContext(&c), id)
	})
})
View Source
var UpdateByAdminRouter = router.Handler(func(c router.Context) {
	var (
		input UpdateByAdminParams
	)

	reportId := c.Param("report_id")

	c.ResponseFunc(c.ShouldBindJSON(&input), func() schema.Response {
		return UpdateByAdmin(helper.NewContext(&c), reportId, input)
	})
})

Functions

func DeleteReportById

func DeleteReportById(id string)

func GetListByAdmin

func GetListByAdmin(c helper.Context, input QueryAdmin) (res schema.Response)

func GetReportByAdmin

func GetReportByAdmin(c helper.Context, id string) (res schema.Response)

func UpdateByAdmin

func UpdateByAdmin(c helper.Context, reportId string, input UpdateByAdminParams) (res schema.Response)

Types

type Query

type Query struct {
	schema.Query
	Type   *model.ReportType   `json:"type" form:"type"`     // 类型
	Status *model.ReportStatus `json:"status" form:"status"` // 状态
}

type QueryAdmin

type QueryAdmin struct {
	Query
	Uid string `json:"uid"`
}

type UpdateByAdminParams

type UpdateByAdminParams struct {
	UpdateParams
	Locked *bool `json:"locked"` // 是否锁定
}

type UpdateParams

type UpdateParams struct {
	Status *model.ReportStatus `json:"status" valid:"required~请选择要标记的状态"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL