| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // DayAccountDetailModel.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/16.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface DayAccountDetailModel : NSObject
- /**
- 单据类型
- */
- @property(nonatomic,copy) NSString *typeNo;
- /**
- 单据号
- */
- @property(nonatomic,copy) NSString *businessNumber;
- /**
- 账款操作类型
- */
- @property(nonatomic,copy) NSString *billOperation;
- /**
- 销售货款总额
- */
- @property(nonatomic,copy) NSString *receivableAmount;
- /**
- 结算方式
- */
- @property(nonatomic,copy) NSString *settleWay;
- /**
- 收款额
- */
- @property(nonatomic,copy) NSString *receiptAmount;
- /**
- 使用定金
- */
- @property(nonatomic,copy) NSString *earnestAmount;
- /**
- 使用预存
- */
- @property(nonatomic,copy) NSString *depositAmount;
-
- @end
|