Ver a proveniência

update

master
shenjiachi há 23 horas
ascendente
cometimento
40cb1232a0
1 ficheiros alterados com 2 adições e 2 eliminações
  1. +2
    -2
      src/implement/platform_revenue_data_implement.go

+ 2
- 2
src/implement/platform_revenue_data_implement.go Ver ficheiro

@@ -31,10 +31,10 @@ func (p PlatformRevenueDataDb) PlatformRevenueDataFindAndCount(page, limit int,
session = session.Where("kind = ?", kind)
}
if startAt != "" {
session = session.Where("start_at >= ?", startAt)
session = session.Where("create_at >= ?", startAt)
}
if endAt != "" {
session = session.Where("end_at <= ?", endAt)
session = session.Where("create_at <= ?", endAt)
}
total, err := session.Limit(limit, (page-1)*limit).FindAndCount(&m)
if err != nil {


Carregando…
Cancelar
Guardar