CultivateInfoModel.m 359 B

1234567891011121314151617181920212223
  1. //
  2. // CultivateInfoModel.m
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/2/5.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import "CultivateInfoModel.h"
  9. @implementation CultivateInfoModel
  10. - (NSString *)typeName {
  11. if(_type==1){
  12. return @"课堂";
  13. }else if(_type==2) {
  14. return @"模拟";
  15. }
  16. return @"课堂";
  17. }
  18. @end