// // AssessorDetail.m // LNManager // // Created by EchoShacolee on 2017/4/10. // Copyright © 2017年 lee. All rights reserved. // #import "AssessorDetail.h" @interface AssessorDetail () @end @implementation AssessorDetail - (void)viewDidLoad { [super viewDidLoad]; self.navigationItem.title = @"考核员详情"; [self setSegmentControllWithTitles:@[@"基本信息"]]; } -(void)setData{ _keysArr = @[ @[@"培训机构编号",@"EI_INSCODE"], @[@"考核员全国编号",@"EI_EXAMNUM"], @[@"姓名",@"EI_NAME"], @[@"性别",@"EI_SEX"], @[@"证件号",@"EI_IDCARD"], @[@"手机号码",@"EI_MOBILE"], @[@"联系地址",@"EI_ADDRESS"], @[@"驾驶证号",@"EI_DRILICENCE"], @[@"驾驶证初领日期",@"EI_FSTDRILICDATE"], @[@"职业资格证号",@"EI_OCCUPATIONNO"], @[@"职业资格等级",@"EI_OCCUPATIONLEVEL"], @[@"准驾车型",@"EI_DRIPERMITTED"], @[@"准教车型",@"EI_TEACHPERMITTED"], @[@"供职状态",@"EI_EMPLOYSTATUS"], @[@"入职日期",@"EI_HIREDATE"], @[@"离职日期",@"EI_LEAVEDATE"], @[@"备案时间",@"EI_RECORD_TIME"], @[@"备案状态",@"EI_RECORD_STATUS"]]; [super setData]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } /* #pragma mark - Navigation // In a storyboard-based application, you will often want to do a little preparation before navigation - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller. } */ @end