1234567891011121314151617181920212223 |
- //
- // EvaluationAndPayVC.h
- // jiaPei
- //
- // Created by apple on 16/6/8.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface EvaluationAndPayVC : UIViewController
- /*为YES是评论,换成了另一个类(Evaluation),此类评论功能弃用
- * NO 是支付
- */
- @property (nonatomic, assign) BOOL isFinishEva;
- //@property (nonatomic, assign) BOOL isFromPayVC;
- //订单的信息 主要是支付金额
- @property (nonatomic, retain) NSDictionary *dataDic;
- @end
|