OrderdetailCell.h 790 B

12345678910111213141516171819202122232425
  1. //
  2. // OrderdetailCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/24.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderdetailModel.h"
  10. @interface OrderdetailCell : UITableViewCell
  11. @property(copy,nonatomic)UILabel *title;//标题
  12. @property(copy,nonatomic)UILabel *state;//状态
  13. @property(copy,nonatomic)UILabel *ordernumber;//订单编号
  14. @property(copy,nonatomic)UILabel *time;//时间
  15. @property(copy,nonatomic)UITextField *price;//价格
  16. @property(copy,nonatomic)UILabel *number;//数量
  17. @property(copy,nonatomic)UILabel *soufu;//
  18. @property(copy,nonatomic)UILabel *weikuan;//
  19. @property(copy,nonatomic)UILabel *zongjia;//总金额
  20. // [cell assignment:dataArray[indexPath.row]];
  21. - (void)assignment:(OrderdetailModel*)model;
  22. @end