ExchangeViewController.h 732 Bytes
//
//  ExchangeViewController.h
//  IVTMeLiveTwo
//
//  Created by xrg on 16/9/29.
//  Copyright © 2016年 QLQ. All rights reserved.
//

#import "BaseViewController.h"

@interface Product : NSObject{
@private
    float     _price;
    NSString *_subject;
    NSString *_body;
    NSString *_orderId;
}


@property (nonatomic, assign) float price;
@property (nonatomic, copy) NSString *subject;
@property (nonatomic, copy) NSString *body;
@property (nonatomic, copy) NSString *orderId;


typedef void(^changeMitangTotle)(id);
@property (nonatomic, copy) changeMitangTotle mitangTotle;

@end
@interface ExchangeViewController : BaseViewController
@property (nonatomic,copy) void (^accountNumberEdit)(NSString *nickNameString);

@end