SocietyDesViewController.h 669 B

1234567891011121314151617181920
  1. //
  2. // SocietyDesViewController.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/1/22.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SocietyListModel;
  10. @interface SocietyDesViewController : BGBaseViewController
  11. @property (nonatomic, assign) int isSocietyHeder; //是否是公会长 //1是公会长,0是公会成员,2是陌生人
  12. @property (nonatomic, copy) NSString * society_id; //公会ID
  13. @property (nonatomic, copy) NSString * user_id;
  14. @property (nonatomic, copy) NSString * is_apply; //是否已经提交申请
  15. @property(nonatomic, strong) SocietyListModel * listModel; //公会列表中的公会信息
  16. @end