markGroup.h 389 B

123456789101112131415161718
  1. //
  2. // markGroup.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/13.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface markGroup : NSObject
  10. @property (nonatomic, copy) NSString *name;
  11. @property (nonatomic, copy) NSString *parent;
  12. @property (nonatomic, copy) NSString *ID;
  13. +(NSMutableArray*)markGroupWithFMResultSet:(FMResultSet*)set;
  14. @end