This commit is contained in:
Jay
2018-10-09 23:57:41 +08:00
parent 101024599c
commit 86bbce08ed
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ func GetRandomLotteryByType(t string) (p *Lottery, err error) {
// GetRandomLotteryByTypeAndLimit -
func GetRandomLotteryByTypeAndLimit(t string, limit int) (p []*Lottery, err error) {
offset := rand.Intn(10)
err = x.Select(p, `select * from "public"."lottery" where "type" = $1 order by random() offset $2 limit $3`, t, offset, limit)
err = x.Select(&p, `select * from "public"."lottery" where "type" = $1 order by random() offset $2 limit $3`, t, offset, limit)
if err == sql.ErrNoRows {
return nil, nil
}