1234567891011121314151617181920212223 |
- //
- // ASOrderModel.h
- // ACSION
- //
- // Created by 小花 on 2019/4/24.
- // Copyright © 2019 acsion. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASOrderModel : NSObject
- @property (nonatomic, strong) NSString *amount;
- @property(nonatomic, copy) NSString *hepin;
- @property (nonatomic, strong) NSString *term;
- @property(nonatomic, copy) NSString *leixing;
- @property (nonatomic, strong) NSString *create_time;
- @property(nonatomic, copy) NSString *hua;
- @end
- NS_ASSUME_NONNULL_END
|