BGBaseModel.h 562 B

12345678910111213141516171819
  1. //
  2. // BGBaseModel.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 2017/5/3.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface BGBaseModel : NSObject
  10. @property (nonatomic, copy) NSString *act; // 接口名称
  11. @property (nonatomic, copy) NSString *ctl; // 接口名称
  12. @property (nonatomic, copy) NSString *errorStr; // 错误信息
  13. @property (nonatomic, assign) NSInteger status; // 0:业务上的失败 1:业务上的成功
  14. @end