SalesInStorageListCell.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // SalesInStorageListCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2018/4/23.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SalesInStorageDelegate.h"
  10. @interface SalesInStorageListCell : UITableViewCell
  11. @property(nonatomic,strong) OtherInStorageListModel *inStorageListModel;
  12. @property(nonatomic,strong) UILabel *lblInStorageNo;
  13. @property(nonatomic,strong) UILabel *lblInStorageStatus;
  14. @property (nonatomic, strong) UIView *topSeparatorView;
  15. @property(nonatomic,strong) UILabel *lblCustomerName;
  16. @property(nonatomic,strong) UILabel *lblSupplier;
  17. @property(nonatomic,strong) UILabel *lblCustomerCode;
  18. @property(nonatomic,strong) UILabel *lblStaff;
  19. @property(nonatomic,strong) UILabel *lblBusinessDepartment;
  20. @property(nonatomic,strong) UILabel *lblCreater;
  21. @property(nonatomic,strong) UILabel *lblAccountDate;
  22. @property(nonatomic,strong) UILabel *lblCustomerAddress;
  23. @property(nonatomic,strong) UILabel *lblGoodsQuantity;
  24. @property (nonatomic, strong) UIView *middleSeparatorView;
  25. @property(nonatomic,strong) UIButton *btnGoodsDetail;
  26. @property(nonatomic,strong) UIButton *btnCorrect;
  27. @property(nonatomic,assign) NSInteger index;
  28. @property (nonatomic, strong) UIView *bottomSeparatorView;
  29. @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
  30. -(void)setSalesInStorageListModel:(OtherInStorageListModel*)inStorageModel;
  31. @end