发布地图列表查询参数增加厂商

This commit is contained in:
joylink_zhangsai 2023-10-13 11:19:39 +08:00
parent def097d591
commit 126bd860fe
2 changed files with 6 additions and 2 deletions

View File

@ -13,10 +13,11 @@ type PublishedGiReqDto struct {
}
type PublishedGiListReqDto struct {
Name string `json:"name" form:"name"`
Name string `json:"name" form:"name"`
Type int32 `json:"type" form:"type"`
Category string `json:"category" form:"category"`
Time dto.JsonTime `json:"time" form:"time" time_format:"2006-01-02 15:04:05"`
Type int32 `json:"type" form:"type"`
}
type PublishReqDto struct {

View File

@ -36,6 +36,9 @@ func ListQueryPublishedGi(req *publishedGi.PublishedGiListReqDto) []*publishedGi
if req.Type != 0 {
where = where.Where(dbquery.PublishedGi.Type.Eq(req.Type))
}
if req.Category != "" {
where = where.Where(dbquery.PublishedGi.Category.Eq(req.Category))
}
find, err := where.Debug().Find()
if err != nil {
panic(dto.ErrorDto{Code: dto.DataOperationError, Message: err.Error()})