SubmitOrderModel.h 790 B

12345678910111213141516171819202122232425
  1. //
  2. // SubmitOrderModel.h
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-8-1.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface SubmitOrderModel : NSObject
  10. @property(strong,nonatomic) NSArray *cartItemArr;
  11. -(void)SubmitOrder:(UIView *)v;
  12. @property(copy) NSString * strFilingID;
  13. @property(copy) NSString * strOrganizationID;
  14. @property(copy) NSString *strStaffID;
  15. @property(copy) NSString *strAddress;
  16. @property(copy) NSString *strRemarks;
  17. @property(copy) NSString *strChannelID;
  18. @property(copy) NSString *strCustomerType;
  19. @property(copy) NSString *strTelephone;
  20. @property(copy) NSString *strCustomerName;
  21. @property(copy) NSString *strCustomerID;
  22. @property(copy) NSString *strCustomerCode;
  23. @property(weak)UIViewController *parentVC;
  24. @end