|
@@ -1,7 +1,6 @@
|
|
|
package order
|
|
|
|
|
|
import (
|
|
|
- "app.yhyue.com/moapp/jybase/common"
|
|
|
"config"
|
|
|
"database/sql"
|
|
|
"encoding/json"
|
|
@@ -1837,13 +1836,13 @@ func UpdateRule(entId int, startTime, endTime time.Time, status interface{}, typ
|
|
|
set["$set"] = map[string]interface{}{
|
|
|
"l_vip_starttime": startTime.Unix(),
|
|
|
"l_vip_endtime": endTime.Unix(),
|
|
|
- "i_vip_status": common.Int64All(status),
|
|
|
+ "i_vip_status": qutil.Int64All(status),
|
|
|
}
|
|
|
} else {
|
|
|
set["$set"] = map[string]interface{}{
|
|
|
"l_member_starttime": startTime.Unix(),
|
|
|
"l_member_endtime": endTime.Unix(),
|
|
|
- "i_member_status": common.Int64All(status),
|
|
|
+ "i_member_status": qutil.Int64All(status),
|
|
|
}
|
|
|
}
|
|
|
ok = util.MQFW.Update("ent_user", map[string]interface{}{
|