// // GXFDisplayActions.h // XFFruit // 显示有已有权限功能的信息 // Created by freecui on 15/8/27. // Copyright (c) 2015年 Xummer. All rights reserved. // #import "IBTObject.h" @interface GXFDisplayFunction : IBTObject @property (nonatomic, assign) NSInteger Id; // @property (nonatomic, assign) NSInteger functionId; @property (nonatomic, copy) NSString *functionName; // @property (nonatomic, copy) NSString *functionImgName; // @property (nonatomic, copy) NSString *functionSmallImgName; @property (nonatomic, assign) BOOL isSelected; //选中 @property (nonatomic, assign) BOOL hasPermission; @property (nonatomic, assign) NSInteger functionItemTag; + (instancetype)initClassWithDictionary: (NSDictionary *)dict; - (instancetype)initWithDictionary: (NSDictionary *)dict; @end