Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Country ¶
type Country struct {
CountryBll controllers.ICountry
}
Country - Sample program
func NewCountry ¶
func NewCountry(bCountry controllers.ICountry) *Country
NewCountry - Create a country controller
func (*Country) Create ¶
Create - Create data @Tags Country @Summary Create data @Param Authorization header string false "Bearer User Token" @Param body body schema.Country true "Create data" @Success 200 {object} schema.Country @Failure 400 {object} schema.HTTPError "{error:{code:0,message: Invalid request parameter}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/countries [post]
func (*Country) Delete ¶
Delete - Delete data @Tags Country @Summary Delete data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.HTTPStatus "{status:OK}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/countries/{code} [delete]
func (*Country) Get ¶
Get - Query specified data @Tags Country @Summary Query specified data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.Country @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 404 {object} schema.HTTPError "{error:{code:0,message: Resource does not exist.}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/countries/{code} [get]
func (*Country) Query ¶
Query - Query data @Tags Country @Summary Query data @Param Authorization header string false "Bearer User Token" @Param current query int true "Page Index" default(1) @Param pageSize query int true "Paging Size" default(10) @Param code query string false "Numbering" @Param name query string false "Name" @Param status query int false "Status (1: Enable 2: Disable)" @Success 200 {array} schema.Country "Search result: {list:List data,pagination:{current:Page index, pageSize: Page size, total: The total number}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/countries [get]
func (*Country) Update ¶
Update - Update data @Tags Country @Summary Update data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Param body body schema.Country true "Update data" @Success 200 {object} schema.Country @Failure 400 {object} schema.HTTPError "{error:{code:0,message: Invalid request parameter}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/countries/{code} [put]
type Language ¶
type Language struct {
LanguageBll controllers.ILanguage
}
Language - Sample program
func NewLanguage ¶
func NewLanguage(bLanguage controllers.ILanguage) *Language
NewLanguage - Create a language controller
func (*Language) Create ¶
Create - Create data @Tags Language @Summary Create data @Param Authorization header string false "Bearer User Token" @Param body body schema.Language true "Create data" @Success 200 {object} schema.Language @Failure 400 {object} schema.HTTPError "{error:{code:0,message: Invalid request parameter}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language [post]
func (*Language) Delete ¶
Delete - Delete data @Tags Language @Summary Delete data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.HTTPStatus "{status:OK}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language/{code} [delete]
func (*Language) Disable ¶
Disable - Disable data @Tags Language @Summary Disable data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.HTTPStatus "{status: OK}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language/{code}/disable [patch]
func (*Language) Enable ¶
Enable - Enable data @Tags Language @Summary Enable data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.HTTPStatus "{status:OK}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language/{code}/enable [patch]
func (*Language) Get ¶
Get - Query specified data @Tags Language @Summary Query specified data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Success 200 {object} schema.Language @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 404 {object} schema.HTTPError "{error:{code:0,message: Resource does not exist.}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language/{code} [get]
func (*Language) Query ¶
Query - Query data @Tags Language @Summary Query data @Param Authorization header string false "Bearer User Token" @Param current query int true "Page Index" default(1) @Param pageSize query int true "Paging Size" default(10) @Param code query string false "Numbering" @Param name query string false "Name" @Param status query int false "Status (1: Enable 2: Disable)" @Success 200 {array} schema.Language "Search result: {list:List data,pagination:{current:Page index, pageSize: Page size, total: The total number}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language [get]
func (*Language) Update ¶
Update - Update data @Tags Language @Summary Update data @Param Authorization header string false "Bearer User Token" @Param code path string true "code" @Param body body schema.Language true "Update data" @Success 200 {object} schema.Language @Failure 400 {object} schema.HTTPError "{error:{code:0,message: Invalid request parameter}}" @Failure 401 {object} schema.HTTPError "{error:{code:0,message: Unauthorized}}" @Failure 500 {object} schema.HTTPError "{error:{code:0,message: Server Error}}" @Router /api/v1/language/{code} [put]