up_bill.go 700 B

123456789101112131415161718
  1. package dao
  2. import (
  3. "context"
  4. "go-common/app/interface/main/growup/model"
  5. )
  6. const (
  7. _upBillSQL = "SELECT mid,first_income,max_income,total_income,av_count,av_max_income,av_id,quality_value,defeat_num,title,share_items,first_time,max_time,signed_at,end_at FROM up_bill WHERE mid = ?"
  8. )
  9. // GetUpBill get up bill by mid
  10. func (d *Dao) GetUpBill(c context.Context, mid int64) (up *model.UpBill, err error) {
  11. up = &model.UpBill{}
  12. err = d.db.QueryRow(c, _upBillSQL, mid).Scan(&up.MID, &up.FirstIncome, &up.MaxIncome, &up.TotalIncome, &up.AvCount, &up.AvMaxIncome, &up.AvID, &up.QualityValue, &up.DefeatNum, &up.Title, &up.ShareItems, &up.FirstTime, &up.MaxTime, &up.SignedAt, &up.EndAt)
  13. return
  14. }