MyApprovalModel.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // MyApprovalModel.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/1.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol MyApprovalModel
  11. @end
  12. @interface MyApprovalModel : BaseModel
  13. @property (nonatomic, assign) NSInteger TodoId;
  14. @property (nonatomic ,assign) NSInteger UserId;
  15. @property (nonatomic ,strong) NSArray <NSString*> *Summaries;
  16. @property (nonatomic ,assign) NSInteger ProcessId;
  17. @property (nonatomic ,strong) NSString *Title;
  18. @property (nonatomic ,strong) NSString *AvatarUrl;
  19. @property (nonatomic ,strong) NSString *CreatedDate;
  20. @property (nonatomic ,assign) NSInteger Id;
  21. @property (nonatomic ,assign) NSInteger ProcessNodeId;
  22. @property (nonatomic, strong) NSString *State;
  23. @property (nonatomic, strong) NSString *name;
  24. @property (nonatomic, strong) NSString *firstKey;
  25. @property (nonatomic, strong) NSString *firstValue;
  26. @property (nonatomic, strong) NSString *secondKey;
  27. @property (nonatomic, strong) NSString *secondValue;
  28. @property (nonatomic, strong) NSString *thirdKey;
  29. @property (nonatomic, strong) NSString *thirdValue;
  30. @property (nonatomic, strong) NSString *approvalText;
  31. @property (nonatomic, assign) NSInteger approvalStatus;
  32. @property (nonatomic, assign) BOOL IsRead;
  33. @end
  34. NS_ASSUME_NONNULL_END