// // SafeDetail.m // LNManager // // Created by EchoShacolee on 2017/4/10. // Copyright © 2017年 lee. All rights reserved. // #import "SafeDetail.h" @interface SafeDetail () @end @implementation SafeDetail - (void)viewDidLoad { [super viewDidLoad]; self.navigationItem.title = @"安全员详情"; [self setSegmentControllWithTitles:@[@"基本信息"]]; } -(void)setData{ _keysArr = @[@[@"培训机构编号",@"SI_INSCODE"], @[@"安全员全国编号",@"SI_SECUNUM"], @[@"姓名",@"SI_NAME"], @[@"性别",@"SI_SEX"], @[@"证件号",@"SI_IDCARD"], @[@"手机号码",@"SI_MOBILE"], @[@"联系地址",@"SI_ADDRESS"], @[@"驾驶证号",@"SI_DRILICENCE"], @[@"驾驶证初领日期",@"SI_FSTDRILICDATE"], @[@"职业资格证号",@"SI_OCCUPATIONNO"], @[@"职业资格等级",@"SI_OCCUPATIONLEVEL"], @[@"准驾车型",@"SI_DRIPERMITTED"], @[@"准教车型",@"SI_TEACHPERMITTED"], @[@"供职状态",@"SI_EMPLOYSTATUS"], @[@"入职日期",@"SI_HIREDATE"], @[@"离职日期",@"SI_LEAVEDATE"], @[@"备案时间",@"SI_RECORD_TIME"], @[@"备案状态",@"SI_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