pg_list_interval_dao.go
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package dao
import (
"fmt"
"github.com/go-pg/pg"
pgTransaction "github.com/linmadan/egglib-go/transaction/pg"
)
type ListIntervalDao struct {
transactionContext *pgTransaction.TransactionContext
}
// 榜单时间管理
func (dao *ListIntervalDao) RankPeriodCheckTime(startTime int64, endTime int64, idNot int, companyId int) bool {
fmt.Print(startTime, "\n")
fmt.Print(endTime, "\n")
var count int
tx := dao.transactionContext.PgTx
_, err := tx.QueryOne(
pg.Scan(&count),
`SELECT count(*) FROM list_intervals
WHERE id <> ?
AND company_id = ?
AND
(
( extract(epoch from list_interval_start_time) BETWEEN ? AND ?)
OR
( extract(epoch from list_interval_end_time) BETWEEN ? AND ?)
OR
(? BETWEEN extract(epoch from list_interval_start_time) AND extract(epoch from list_interval_end_time))
OR
(? BETWEEN extract(epoch from list_interval_start_time) AND extract(epoch from list_interval_end_time))
)
LIMIT 1 `,
idNot, companyId, startTime, endTime, startTime, endTime, startTime, endTime)
if err != nil {
fmt.Errorf(err.Error())
return false
}
if count > 0 {
fmt.Print(count, "\n")
return false
}
return true
}
func NewListIntervalDao(transactionContext *pgTransaction.TransactionContext) (*ListIntervalDao, error) {
if transactionContext == nil {
return nil, fmt.Errorf("transactionContext参数不能为nil")
} else {
return &ListIntervalDao{
transactionContext: transactionContext,
}, nil
}
}