TrainRecord.m 311 B

12345678910111213141516171819
  1. //
  2. // TrainRecord.m
  3. // Texts
  4. //
  5. // Created by tongjun on 13-10-24.
  6. // Copyright (c) 2013年 tongjun. All rights reserved.
  7. //
  8. #import "TrainRecord.h"
  9. @implementation TrainRecord
  10. -(void)logSelf{
  11. NSLog(@"str----%@,end----%@,len----%@,stu_id----%@;",_beginTime,_endTime,_trainTime,_studentId);
  12. }
  13. @end