| 12345678910111213141516171819202122232425 |
- //
- // SubmitOrderModel.h
- // IBOSSIPAD
- //
- // Created by iHope on 14-8-1.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface SubmitOrderModel : NSObject
- @property(strong,nonatomic) NSArray *cartItemArr;
- -(void)SubmitOrder:(UIView *)v;
- @property(copy) NSString * strFilingID;
- @property(copy) NSString * strOrganizationID;
- @property(copy) NSString *strStaffID;
- @property(copy) NSString *strAddress;
- @property(copy) NSString *strRemarks;
- @property(copy) NSString *strChannelID;
- @property(copy) NSString *strCustomerType;
- @property(copy) NSString *strTelephone;
- @property(copy) NSString *strCustomerName;
- @property(copy) NSString *strCustomerID;
- @property(copy) NSString *strCustomerCode;
- @property(weak)UIViewController *parentVC;
- @end
|