NewSaleTableViewCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // qianYueCustomerCell.h
  3. // upAPP
  4. //
  5. // Created by 樊亮 on 2020/4/6.
  6. // Copyright © 2020 youke. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class customerModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NewSaleTableViewCell : UITableViewCell
  12. @property (strong, nonatomic) UILabel *NameLabel;
  13. @property (strong,nonatomic)UITextField *nameField;
  14. @property (strong, nonatomic) UILabel *PhoneLabel;
  15. @property (strong,nonatomic)UITextField *phoneField;
  16. @property (strong, nonatomic) UILabel *cardLabel;
  17. @property (strong,nonatomic)UITextField *cardField;
  18. @property (strong, nonatomic) UILabel *brandLabel;
  19. @property (strong,nonatomic)UITextField *brandField;
  20. @property (strong, nonatomic) UIButton *addBtn;
  21. @property (strong,nonatomic)UIImageView *addImage;
  22. @property (strong, nonatomic)UIButton *deleteBtn;
  23. @property(strong,nonatomic)UIView *background_View;
  24. @property(strong,nonatomic)UIImageView *xingImage1;
  25. @property(strong,nonatomic)UIImageView *xingImage2;
  26. @property(strong,nonatomic)UIImageView *xingImage3;
  27. @property(strong,nonatomic)UIImageView *xingImage0;
  28. + (instancetype)qianYueCustomerCell:(customerModel *)model WithTableView:(UITableView *)tableView;
  29. @end
  30. NS_ASSUME_NONNULL_END