SafeDetail.m 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // SafeDetail.m
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/10.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import "SafeDetail.h"
  9. @interface SafeDetail ()
  10. @end
  11. @implementation SafeDetail
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. self.navigationItem.title = @"安全员详情";
  15. [self setSegmentControllWithTitles:@[@"基本信息"]];
  16. }
  17. -(void)setData{
  18. _keysArr = @[@[@"培训机构编号",@"SI_INSCODE"],
  19. @[@"安全员全国编号",@"SI_SECUNUM"],
  20. @[@"姓名",@"SI_NAME"],
  21. @[@"性别",@"SI_SEX"],
  22. @[@"证件号",@"SI_IDCARD"],
  23. @[@"手机号码",@"SI_MOBILE"],
  24. @[@"联系地址",@"SI_ADDRESS"],
  25. @[@"驾驶证号",@"SI_DRILICENCE"],
  26. @[@"驾驶证初领日期",@"SI_FSTDRILICDATE"],
  27. @[@"职业资格证号",@"SI_OCCUPATIONNO"],
  28. @[@"职业资格等级",@"SI_OCCUPATIONLEVEL"],
  29. @[@"准驾车型",@"SI_DRIPERMITTED"],
  30. @[@"准教车型",@"SI_TEACHPERMITTED"],
  31. @[@"供职状态",@"SI_EMPLOYSTATUS"],
  32. @[@"入职日期",@"SI_HIREDATE"],
  33. @[@"离职日期",@"SI_LEAVEDATE"],
  34. @[@"备案时间",@"SI_RECORD_TIME"],
  35. @[@"备案状态",@"SI_RECORD_STATUS"]];
  36. [super setData];
  37. }
  38. - (void)didReceiveMemoryWarning {
  39. [super didReceiveMemoryWarning];
  40. // Dispose of any resources that can be recreated.
  41. }
  42. /*
  43. #pragma mark - Navigation
  44. // In a storyboard-based application, you will often want to do a little preparation before navigation
  45. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  46. // Get the new view controller using [segue destinationViewController].
  47. // Pass the selected object to the new view controller.
  48. }
  49. */
  50. @end