|
@@ -434,7 +434,7 @@ FROM
|
|
|
return false, map[string]interface{}{}, allData
|
|
|
}
|
|
|
positiontype := gconv.Int64(administrators["type"])
|
|
|
- if trailstatus == "01" || trailstatus == "03" || trailstatus == "04" {
|
|
|
+ if trailstatus == "01" {
|
|
|
switch positiontype {
|
|
|
case 1:
|
|
|
//找他上级
|
|
@@ -1371,6 +1371,7 @@ func activeUsers() {
|
|
|
}
|
|
|
//活跃用户查询
|
|
|
activeTimeEnd := cfg.ActiveTime
|
|
|
+ activeTimeEnd = "2024-09-02 15:00:00"
|
|
|
sql := fmt.Sprintf(`select * from freeClubSign where act_again_date > "%s" order by act_again_date asc`, activeTimeEnd)
|
|
|
data := BiService.SelectBySql(sql)
|
|
|
if data != nil && *data != nil && len(*data) > 0 {
|