Authored by John Tai

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

... ... @@ -157,7 +157,8 @@
-(NSString *)ts{
long long int date = (long long int)[[NSDate date] timeIntervalSince1970];
return [NSString stringWithFormat:@"%lld", date]?:@"";
int num = (arc4random() % 1000000);
return [NSString stringWithFormat:@"%lld%.6d", date,num]?:@"";
}
@end
... ...