| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SalesPaymentRankModel.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/8/23.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- // 功能描述:销售回款排行模型
- #import <Foundation/Foundation.h>
- @interface SalesPaymentRankModel : NSObject
- /**
- 商家名称
- */
- @property(nonatomic,strong) NSString *objectName;
- /**
- 回款金额
- */
- @property(nonatomic,assign) double paymentAmount;
- /**
- 排行
- */
- @property(nonatomic,assign) NSInteger orderSort;
- /**
- 回款比重
- */
- @property(nonatomic,strong) NSString *backPercent;
- @end
|