| 123456789101112131415161718192021222324252627282930313233 |
- //
- // OrderItemModel.h
- // IBOSSIPAD
- //
- // Created by iHope on 14-8-20.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface OrderItemModel : NSObject
- @property(strong) NSString * orderNo;// 订单单号
- @property(strong) NSString * customerCode;// 客户编码
- @property(strong) NSString * customerName;//客户名称
- @property(strong) NSString * address;//客户地址
- @property(strong) NSString * goodsAmount;// 货物金额
- @property(strong) NSString * createDate;// 货物金额
- @property(strong) NSString * discount;// 折扣
- @property(strong) NSString * markedPriceAmount;// 标价金额
- @property(strong) NSString * organizationName;//业务部门
- @property(strong) NSString * staffName;// 业务员
- @property(strong) NSString * channelName;// 渠道
- @property(strong) NSString * customerTypeName;// 客户性质
- @property(strong) NSString * orderID;//订单ID
- @property(strong) NSString * telephone;//电话
- @property(strong) NSString * remarks;//备注
- @property(strong) NSString *earnestAmount;//利润总额
- @property(strong) NSString *totalAmount;//合计金额
- @property(strong) NSString *discountAmount;//折扣数
- @property(nonatomic) BOOL isChecked;//选中标识
- -(void)ParseDic:(NSDictionary *)dic;//字典
- @end
|