EditFamilyViewController.h 530 B

12345678910111213141516171819
  1. //
  2. // EditFamilyViewController.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/9/26.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FamilyDesModel.h"
  10. @interface EditFamilyViewController : BGBaseViewController
  11. @property (nonatomic, strong) FamilyDesModel * model;
  12. @property (nonatomic, assign) int type; //0为新建公会,1为编辑公会
  13. @property (nonatomic, copy) NSString *user_id;
  14. @property (nonatomic, assign) int canEditAll;
  15. @end