OrderListTableViewCell.h 800 B

12345678910111213141516171819202122
  1. //
  2. // OrderListTableViewCell.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/18/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface OrderListTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *label_so;
  11. @property (strong, nonatomic) IBOutlet UILabel *labelprice;
  12. @property (strong, nonatomic) IBOutlet UILabel *label_date;
  13. @property (strong, nonatomic) IBOutlet UILabel *label_status;
  14. @property (strong, nonatomic) IBOutlet UILabel *label_model;
  15. @property (strong, nonatomic) IBOutlet UILabel *label_sales;
  16. @property (strong, nonatomic) IBOutlet UILabel *label_creator;
  17. @property (strong, nonatomic) IBOutlet UILabel *label_contact;
  18. @property (strong, nonatomic) IBOutlet UILabel *label_po;
  19. @end