// // MyApprovalModel.h // smartRhino // // Created by tederen on 2019/11/1. // Copyright © 2019 tederen. All rights reserved. // #import "BaseModel.h" NS_ASSUME_NONNULL_BEGIN @protocol MyApprovalModel @end @interface MyApprovalModel : BaseModel @property (nonatomic, assign) NSInteger TodoId; @property (nonatomic ,assign) NSInteger UserId; @property (nonatomic ,strong) NSArray *Summaries; @property (nonatomic ,assign) NSInteger ProcessId; @property (nonatomic ,strong) NSString *Title; @property (nonatomic ,strong) NSString *AvatarUrl; @property (nonatomic ,strong) NSString *CreatedDate; @property (nonatomic ,assign) NSInteger Id; @property (nonatomic ,assign) NSInteger ProcessNodeId; @property (nonatomic, strong) NSString *State; @property (nonatomic, strong) NSString *name; @property (nonatomic, strong) NSString *firstKey; @property (nonatomic, strong) NSString *firstValue; @property (nonatomic, strong) NSString *secondKey; @property (nonatomic, strong) NSString *secondValue; @property (nonatomic, strong) NSString *thirdKey; @property (nonatomic, strong) NSString *thirdValue; @property (nonatomic, strong) NSString *approvalText; @property (nonatomic, assign) NSInteger approvalStatus; @property (nonatomic, assign) BOOL IsRead; @end NS_ASSUME_NONNULL_END