//// JTOptionsEntity.h// JobTalk//// Created by Xummer on 14-5-22.// Copyright (c) 2014年 BST. All rights reserved.//#import "IBTObject.h"@interfaceJTOptionsEntity:IBTObject@property(strong,nonatomic)NSArray*optionsArray;@property(strong,nonatomic)NSArray*m_arrDisplayStr;@property(assign,nonatomic)NSIntegerselectedIndex;@property(strong,nonatomic)iddefaultOption;+(NSInteger)indexOfOptionStr:(NSString*)optioninOptions:(NSArray*)options;+(JTOptionsEntity*)entityWithOptions:(NSArray*)optionsandSelectedIndex:(NSInteger)sIndex;+(JTOptionsEntity*)entityWithOptions:(NSArray*)optionsdefaultOptionIndex:(NSInteger)dIndexandSelectedOption:(NSString*)option;+(JTOptionsEntity*)entityWithOptions:(NSArray*)optionsandSelectedOption:(NSString*)option;-(id)initWithOptions:(NSArray*)optionsandSelectedIndex:(NSInteger)sIndex;-(id)getSelectedOption;-(id)getSelectedOptionForCommit;-(NSInteger)indexOfOptionStr:(NSString*)option;@end