AssessorDetail.m 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // AssessorDetail.m
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/10.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import "AssessorDetail.h"
  9. @interface AssessorDetail ()
  10. @end
  11. @implementation AssessorDetail
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.navigationItem.title = @"考核员详情";
  15. [self setSegmentControllWithTitles:@[@"基本信息"] isBttomBar:NO];
  16. }
  17. -(void)setData{
  18. _keysArr = @[
  19. // @[@"培训机构编号",@"EI_INSCODE"],
  20. @[@"姓名",@"EI_NAME"],
  21. @[@"性别",@"EI_SEX"],
  22. @[@"证件号",@"EI_IDCARD"],
  23. @[@"手机号码",@"EI_MOBILE"],
  24. @[@"联系地址",@"EI_ADDRESS"],
  25. @[@"驾驶证号",@"EI_DRILICENCE"],
  26. @[@"驾驶证初领日期",@"EI_FSTDRILICDATE"],
  27. @[@"职业资格证号",@"EI_OCCUPATIONNO"],
  28. @[@"职业资格等级",@"EI_OCCUPATIONLEVEL"],
  29. @[@"准驾车型",@"EI_DRIPERMITTED"],
  30. @[@"准教车型",@"EI_TEACHPERMITTED"],
  31. @[@"供职状态",@"EI_EMPLOYSTATUS"],
  32. @[@"入职日期",@"EI_HIREDATE"],
  33. @[@"离职日期",@"EI_LEAVEDATE"],
  34. @[@"全国统一编号",@"EI_EXAMNUM"],
  35. @[@"备案时间",@"EI_RECORD_DATE"]
  36. // @[@"备案状态",@"EI_RECORD_STATUS"]
  37. ];
  38. [super setData];
  39. }
  40. - (void)didReceiveMemoryWarning {
  41. [super didReceiveMemoryWarning];
  42. // Dispose of any resources that can be recreated.
  43. }
  44. /*
  45. #pragma mark - Navigation
  46. // In a storyboard-based application, you will often want to do a little preparation before navigation
  47. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  48. // Get the new view controller using [segue destinationViewController].
  49. // Pass the selected object to the new view controller.
  50. }
  51. */
  52. @end