CreateInterLeterVC.h 961 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CreateInterLeterVC.h
  3. // smartRhino
  4. //
  5. // Created by taidi on 2019/12/25.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CreateInterLeterVC : BaseViewController
  11. +(CreateInterLeterVC *)initCreateInterLeterVC;
  12. @property (nonatomic,assign) NSInteger interLeterId;
  13. @property (nonatomic,assign) NSInteger replayId;
  14. @property (strong,nonatomic) NSMutableArray <InterLeterDetailSubModel *>* replayArray;
  15. @property (strong,nonatomic) NSMutableArray <InterLeterDetailSubModel *>* modifyArray;
  16. @property (strong,nonatomic) NSMutableArray * replayDataArray;
  17. @property (copy, nonatomic) NSString *replayTitle;
  18. @property (nonatomic,assign) InterLeterHanderType interLeterHanderType;
  19. @property (nonatomic,assign) BOOL isEdit;
  20. @property (assign,nonatomic) BOOL isFromOtherPeople;
  21. @property (strong, nonatomic) NSMutableArray <SelectModel *>*shouJianArrTemp;
  22. @end
  23. NS_ASSUME_NONNULL_END