Merge branch 'master' of https://git.code.tencent.com/beijing-rtss-test/bj-rtsts-server-go
This commit is contained in:
commit
389bea4970
|
@ -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 {
|
||||
|
|
|
@ -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()})
|
||||
|
|
Loading…
Reference in New Issue