SalesInStorageListDetailCell.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. //
  2. // SalesInStorageListDetailCell.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. @interface SalesInStorageListDetailCell : UITableViewCell
  10. @property(nonatomic,strong) UILabel *lblInStorageNo;
  11. @property(nonatomic,strong) UIView *topSeparator;
  12. @property(nonatomic,strong) UILabel *lblOnlyCode;
  13. @property(nonatomic,strong) UILabel *lblGoodsCode;
  14. @property(nonatomic,strong) UILabel *lblBrand;
  15. @property(nonatomic,strong) UILabel *lblKind;
  16. @property(nonatomic,strong) UILabel *lblVariety;
  17. @property(nonatomic,strong) UILabel *lblSeries;
  18. @property(nonatomic,strong) UILabel *lblSpecification;
  19. @property(nonatomic,strong) UILabel *lblGrade;
  20. @property(nonatomic,strong) UILabel *lblColorNumber;
  21. @property(nonatomic,strong) UILabel *lblWarehouseName;
  22. @property(nonatomic,strong) UILabel *lblPositionNumber;
  23. @property(nonatomic,strong) UILabel *lblInStorageQuantity;
  24. @property(nonatomic,strong) UILabel *lblBox;
  25. @property(nonatomic,strong) UILabel *lblPiece;
  26. @property(nonatomic,strong) UILabel *lblInStorageAcreage;
  27. @property(nonatomic,strong) UILabel *lblInStoragePrice;
  28. @property(nonatomic,strong) UILabel *lblAcountDate;
  29. @property(nonatomic,strong) UILabel *lblPackage;
  30. @property(nonatomic,strong) UILabel *lblUnit;
  31. @property(nonatomic,strong) UILabel *lblCirculateType;
  32. @property(nonatomic,strong) UILabel *lblWeight;
  33. @property(nonatomic,strong) UILabel *lblAcreage;
  34. @property(nonatomic,strong) UILabel *lblVolume;
  35. @property(nonatomic,strong) UILabel *lblGoodsName;
  36. @property(nonatomic,strong) UILabel *lblExpandAtrribute;
  37. @property(nonatomic,strong) UILabel *lblExpandAtrribute2;
  38. @property(nonatomic,strong) UILabel *lblGoodsRemarks;
  39. @property(nonatomic,strong) UILabel *lblRemarks;
  40. @property(nonatomic,strong) UIView *bottomSeparator;
  41. @property(nonatomic,strong) OtherInStorageGoodsListDetailModel *inStorageDetailListModel;
  42. -(void)setSalesInStorageListDetailModel:(OtherInStorageGoodsListDetailModel*)inStorageDetailModel;
  43. @end