OrderItemModel.h 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // OrderItemModel.h
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-8-20.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface OrderItemModel : NSObject
  10. @property(strong) NSString * orderNo;// 订单单号
  11. @property(strong) NSString * customerCode;// 客户编码
  12. @property(strong) NSString * customerName;//客户名称
  13. @property(strong) NSString * address;//客户地址
  14. @property(strong) NSString * goodsAmount;// 货物金额
  15. @property(strong) NSString * createDate;// 货物金额
  16. @property(strong) NSString * discount;// 折扣
  17. @property(strong) NSString * markedPriceAmount;// 标价金额
  18. @property(strong) NSString * organizationName;//业务部门
  19. @property(strong) NSString * staffName;// 业务员
  20. @property(strong) NSString * channelName;// 渠道
  21. @property(strong) NSString * customerTypeName;// 客户性质
  22. @property(strong) NSString * orderID;//订单ID
  23. @property(strong) NSString * telephone;//电话
  24. @property(strong) NSString * remarks;//备注
  25. @property(strong) NSString *earnestAmount;//利润总额
  26. @property(strong) NSString *totalAmount;//合计金额
  27. @property(strong) NSString *discountAmount;//折扣数
  28. @property(nonatomic) BOOL isChecked;//选中标识
  29. -(void)ParseDic:(NSDictionary *)dic;//字典
  30. @end