1234567891011121314151617181920212223 |
- //
- // YOUPAIHRCoinDetailModel.h
- // VQU
- //
- // Created by xiaohaoran on 2021/10/19.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIHRCoinDetailModel : NSObject
- @property(nonatomic,assign)NSInteger youpaipid;
- @property(nonatomic,assign)NSInteger youpaipbusiness_code;//业务码
- @property(nonatomic,copy)NSString *youpaipchange_value;//变更金额
- @property(nonatomic,copy)NSString *youpaipremark;//标注
- @property(nonatomic,copy)NSString *youpaipbc;//记录说明
- @property(nonatomic,copy)NSString *youpaipcreate_time;//创建时间
- @end
- NS_ASSUME_NONNULL_END
|