作者 郑周

Merge branch 'dev' into test

@@ -121,13 +121,13 @@ func (repository *MessageSystemRepository) Find(ctx context.Context, conn transa @@ -121,13 +121,13 @@ func (repository *MessageSystemRepository) Find(ctx context.Context, conn transa
121 ) 121 )
122 queryFunc := func() (interface{}, error) { 122 queryFunc := func() (interface{}, error) {
123 tx = tx.Model(&ms).Order("id desc") 123 tx = tx.Model(&ms).Order("id desc")
  124 + if v, ok := queryOptions["companyId"]; ok {
  125 + tx.Where("company_id = ?", v)
  126 + }
  127 + if v, ok := queryOptions["recipientId"]; ok {
  128 + tx.Where("recipient_id = ?", v)
  129 + }
124 if total, tx = transaction.PaginationAndCount(ctx, tx, queryOptions, &ms); tx.Error != nil { 130 if total, tx = transaction.PaginationAndCount(ctx, tx, queryOptions, &ms); tx.Error != nil {
125 - if v, ok := queryOptions["companyId"]; ok {  
126 - tx.Where("company_id = ?", v)  
127 - }  
128 - if v, ok := queryOptions["recipientId"]; ok {  
129 - tx.Where("recipient_id = ?", v)  
130 - }  
131 return dms, tx.Error 131 return dms, tx.Error
132 } 132 }
133 return dms, nil 133 return dms, nil