| 12345678910111213141516171819 |
- //
- // EditFamilyViewController.h
- // BuguLive
- //
- // Created by 王珂 on 16/9/26.
- // Copyright © 2016年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FamilyDesModel.h"
- @interface EditFamilyViewController : BGBaseViewController
- @property (nonatomic, strong) FamilyDesModel * model;
- @property (nonatomic, assign) int type; //0为新建公会,1为编辑公会
- @property (nonatomic, copy) NSString *user_id;
- @property (nonatomic, assign) int canEditAll;
- @end
|