OrderdetailsViewController.h 624 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  OrderdetailsViewController.h
//  Lighting
//
//  Created by 曹云霄 on 16/5/4.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

@interface OrderdetailsViewController : BaseViewController


/**
 *  订单详情tableview
 */
@property (weak, nonatomic) IBOutlet UITableView *orderDetailsTableview;


勾芒's avatar
勾芒 committed
20
/**
勾芒's avatar
勾芒 committed
21
 *  订单ID
勾芒's avatar
勾芒 committed
22 23
 */
@property (nonatomic,copy) NSString *orderCode;
勾芒's avatar
勾芒 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38


/**
 *  是否显示附件信息
 */
@property (nonatomic,assign) BOOL isShowattachment;



/**
 *  区头显示title
 */
@property (nonatomic,strong) NSArray *sectionTitle;


39
@end