CommonEditorCellModel.h 1.1 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // OrderInfoRModelCell.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-12.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "StrikethroughLabel.h"
  10. @interface CommonEditorCellModel : UITableViewCell
  11. @property (strong, nonatomic) IBOutlet UIImageView *imgModel;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelID;
  13. @property (strong, nonatomic) IBOutlet UILabel *labelDescription;
  14. @property (strong, nonatomic) IBOutlet UILabel *labelSubtype;
  15. @property (strong, nonatomic) IBOutlet UILabel *labelUnitPrice;
  16. @property (strong, nonatomic) IBOutlet UILabel *labelCount;
  17. @property (strong, nonatomic) IBOutlet UILabel *labelTotalPrice;
  18. @property (strong, nonatomic) IBOutlet UILabel *labelMasterPack;
  19. @property (strong, nonatomic) IBOutlet UILabel *labelDiscount;
  20. @property (strong, nonatomic) IBOutlet StrikethroughLabel *labelOldPrice;
  21. @property (strong, nonatomic) IBOutlet UIButton *buttonBundle;
  22. @property (strong, nonatomic) NSDictionary* bundle_item;
  23. @property (strong, nonatomic) IBOutlet UILabel *avalibilityLabel;
  24. @end