RepairNoReciptSearchCell.h 679 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // NoReciptSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by ssl on 2017/8/28.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "SideSlipBaseTableViewCell.h"
  9. @interface RepairNoReciptSearchCell : SideSlipBaseTableViewCell
  10. /**
  11. 安排单号
  12. */
  13. @property (weak, nonatomic) IBOutlet UITextField *arrangementOrderNo;
  14. /**
  15. 售前单号
  16. */
  17. @property (weak, nonatomic) IBOutlet UITextField *presaleOrderNo;
  18. /**
  19. 客户姓名
  20. */
  21. @property (weak, nonatomic) IBOutlet UITextField *customerName;
  22. /**
  23. 开始时间
  24. */
  25. @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
  26. /**
  27. 结束时间
  28. */
  29. @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
  30. @end