| 123456789101112131415161718192021 |
- //
- // OrderListTableViewCell.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/18/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface OrderListTableViewCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *label_so;
- @property (strong, nonatomic) IBOutlet UILabel *labelprice;
- @property (strong, nonatomic) IBOutlet UILabel *label_date;
- @property (strong, nonatomic) IBOutlet UILabel *label_status;
- @property (strong, nonatomic) IBOutlet UILabel *label_model;
- @property (strong, nonatomic) IBOutlet UILabel *label_sales;
- @property (strong, nonatomic) IBOutlet UILabel *label_creator;
- @property (strong, nonatomic) IBOutlet UILabel *label_contact;
- @end
|