Authored by 戴强

Merge branch 'debug' into 'develop'

ts字段增加6位随机数.reviewed by yuliang



See merge request !2
... ... @@ -156,8 +156,9 @@
}
-(NSString *)ts{
long long int date = (long long int)[[NSDate date] timeIntervalSince1970];
return [NSString stringWithFormat:@"%lld", date]?:@"";
NSTimeInterval date = [[NSDate date] timeIntervalSince1970]*1000;
int num = (arc4random() % 1000000);
return [NSString stringWithFormat:@"%.0f%.6d", date,num]?:@"";
}
@end
... ...