RQTimeViewModel.m 622 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RQTimeViewModel.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2021/11/19.
  6. // Copyright © 2021 JCZ. All rights reserved.
  7. //
  8. #import "RQTimeViewModel.h"
  9. @implementation RQTimeViewModel
  10. #pragma mark - Public Method
  11. - (instancetype)initWithServices:(id<RQViewModelServices>)services params:(NSDictionary *)params {
  12. if (self = [super initWithServices:services params:params]) {
  13. }
  14. return self;
  15. }
  16. - (void)initialize {
  17. [super initialize];
  18. self.title = @"学车计时";
  19. ///配置数据
  20. [self rq_configureData];
  21. }
  22. #pragma mark - ConfigureData
  23. - (void)rq_configureData {
  24. }
  25. @end