| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // NoReciptSearchCell.h
- // IBOSS
- //
- // Created by ssl on 2017/8/28.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "SideSlipBaseTableViewCell.h"
- @interface RepairNoReciptSearchCell : SideSlipBaseTableViewCell
- /**
- 安排单号
- */
- @property (weak, nonatomic) IBOutlet UITextField *arrangementOrderNo;
- /**
- 售前单号
- */
- @property (weak, nonatomic) IBOutlet UITextField *presaleOrderNo;
- /**
- 客户姓名
- */
- @property (weak, nonatomic) IBOutlet UITextField *customerName;
- /**
- 开始时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
- @end
|