RepairReceiptSearchCell.h 875 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // ReceiptSearchCell
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.17
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:搜索Cell
  9. #import "SideSlipBaseTableViewCell.h"
  10. @interface RepairReceiptSearchCell : SideSlipBaseTableViewCell
  11. /**
  12. 配送单号
  13. */
  14. @property (weak, nonatomic) IBOutlet UITextField *receiptOrderNo;
  15. /**
  16. 开始时间
  17. */
  18. @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
  19. /**
  20. 结束时间
  21. */
  22. @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
  23. /**
  24. 回执类型
  25. */
  26. @property (weak, nonatomic) IBOutlet UIButton *btnReceiptType;
  27. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
  28. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
  29. @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
  30. @end