소스 검색

update

tmp
DengBiao 9 달 전
부모
커밋
85bee6eeaa
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      app/db/db_notice.go

+ 2
- 2
app/db/db_notice.go 파일 보기

@@ -50,11 +50,11 @@ func (noticeDb *NoticeDb) FindNoticeById(ids interface{}) (*[]model.Notice, erro
func (noticeDb *NoticeDb) FindNotice(limit, start int) (*[]model.Notice, error) {
var m []model.Notice
if limit == 0 || start == 0 {
if err := noticeDb.Db.Asc("sort").Find(&m); err != nil {
if err := noticeDb.Db.Where("is_pop_to_central_kitchen = 0").Asc("sort").Find(&m); err != nil {
return nil, logx.Error(err)
}
} else {
if err := noticeDb.Db.Asc("sort").Limit(limit, start).Find(m); err != nil {
if err := noticeDb.Db.Where("is_pop_to_central_kitchen = 0").Asc("sort").Limit(limit, start).Find(m); err != nil {
return nil, logx.Error(err)
}
}


불러오는 중...
취소
저장