package
0.0.0-20191025023416-8678ca49b199
Repository: https://github.com/boybird/hello.git
Documentation: pkg.go.dev
# Functions
AddTag Add article tag @Summary Add article tag @Produce json @Param name body string true "Name" @Param state body int false "State" @Param created_by body int false "CreatedBy" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags [post].
DeleteTag Delete article tag @Summary Delete article tag @Produce json @Param id path int true "ID" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags/{id} [delete].
EditTag Update article tag @Summary Update article tag @Produce json @Param id path int true "ID" @Param name body string true "Name" @Param state body int false "State" @Param modified_by body string true "ModifiedBy" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags/{id} [put].
ExportTag Export article tag @Summary Export article tag @Produce json @Param name body string false "Name" @Param state body int false "State" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags/export [post].
GetTags Get multiple article tags @Summary Get multiple article tags @Produce json @Param name query string false "Name" @Param state query int false "State" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags [get].
ImportTag Summary Import article tag @Summary Import article tag @Produce json @Param file body file true "Excel File" @Success 200 {object} app.Response @Failure 500 {object} app.Response @Router /api/v1/tags/import [post].