123456789101112131415161718192021222324252627282930313233 |
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface WorkFLowModel : BaseModel
- @property (nonatomic ,assign) NSInteger GroupId;
- @property (nonatomic ,strong) NSString *Guid;
- @property (nonatomic ,assign) NSInteger Sort;
- @property (nonatomic ,strong) NSString *Name;
- @property (nonatomic ,assign) NSInteger Id;
- @property (nonatomic ,strong) NSString *IconUrl;
- @property (nonatomic ,assign) NSInteger IsDisabled;
- @property (nonatomic ,strong) NSString *Description;
- @property (nonatomic ,strong) NSString *LimitType;
- @property (nonatomic ,strong) NSString *LastModifiedDate;
- @property (nonatomic, strong) UIImage *iconImage;
- @property (nonatomic, assign) NSInteger workNumber;
- @property (nonatomic, strong) NSString *No;
- @property (nonatomic ,strong) NSString *IocUrl;
- @property (nonatomic, assign) NSInteger ReportType;
- @property (nonatomic ,strong) NSString *Title;
- @end
- NS_ASSUME_NONNULL_END
|