| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // ReceiptSearchCell
- // IOBSS 2.0
- //
- // Created by 刘瀚璘 on 2017.7.17
- // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 系统名称:
- // 功能描述:搜索Cell
- #import "SideSlipBaseTableViewCell.h"
- @interface RepairReceiptSearchCell : SideSlipBaseTableViewCell
- /**
- 配送单号
- */
- @property (weak, nonatomic) IBOutlet UITextField *receiptOrderNo;
- /**
- 开始时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnStartDate;
- /**
- 结束时间
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 回执类型
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnReceiptType;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerName;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerAddress;
- @property (strong, nonatomic) IBOutlet UITextField *txtCustomerTelephone;
- @end
|