|
@@ -53,8 +53,8 @@ func SyncComeinMeeting(cont context.Context) (err error) {
|
|
|
RoadshowId: int(v.RoadshowID),
|
|
|
//ConferenceId: comeinDataInfo.ConferenceType,
|
|
|
Title: v.RoadshowTitle,
|
|
|
- StartTime: time.UnixMilli(v.RoadshowBeginTime),
|
|
|
- EndTime: time.UnixMilli(v.RoadshowEndTime),
|
|
|
+ StartTime: time.Unix(v.RoadshowBeginTime/1000, 0),
|
|
|
+ EndTime: time.Unix(v.RoadshowEndTime/1000, 0),
|
|
|
People: 0,
|
|
|
CreateTime: time.Now(),
|
|
|
}
|
|
@@ -143,8 +143,8 @@ func SyncComeinMeeting(cont context.Context) (err error) {
|
|
|
Mobile: mobile,
|
|
|
Email: v.Email,
|
|
|
Name: name,
|
|
|
- FirstWatchTime: time.UnixMilli(v.FirstWatchTime),
|
|
|
- LastWatchTime: time.UnixMilli(v.LastWatchTime),
|
|
|
+ FirstWatchTime: time.Unix(v.FirstWatchTime/1000, 0),
|
|
|
+ LastWatchTime: time.Unix(v.LastWatchTime/1000, 0),
|
|
|
JoinTime: int(v.JoinTime),
|
|
|
AuthInfo: v.AuthInfo,
|
|
|
JoinType: int(v.JoinType),
|