// // JXPlaybackProgress.m // AICity // // Feature: 003-ios-api-https // 播放进度数据模型实现 // #import "JXPlaybackProgress.h" @implementation JXPlaybackProgress - (instancetype)init { self = [super init]; if (self) { _updatedAt = [NSDate date]; _synced = NO; _isCompleted = NO; _progress = 0.0; } return self; } - (NSString *)description { return [NSString stringWithFormat:@"", self.jxDramaId, self.jxEpisodeId, (long)self.position, (long)self.duration, self.progress * 100, self.isCompleted, self.synced]; } @end