// // RAHomeOrderModel.h // Apex And Drivers // // Created by Jack on 2018/6/1. // Copyright © 2018年 USAI. All rights reserved. // #import typedef enum { RAOrderStatusFinish = 3, RAOrderStatusProcessing = 1, RAOrderStatusNew = 2 } RAOrderStatus; @interface RAHomeOrderModel : NSObject @property (nonatomic,assign) RAOrderStatus status; @property (nonatomic,copy) NSString *title; @property (nonatomic,copy) NSString *orderNo; @property (nonatomic,copy) NSString *containerNo; @property (nonatomic,copy) NSString *date; @property (nonatomic,copy) NSString *orderID; @property (nonatomic,copy) NSString *order_type2; @end