| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- //
- // CustomerFilingSearchCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/8/28.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SideSlipBaseTableViewCell.h"
- @interface CustomerFilingSearchCell : SideSlipBaseTableViewCell
- /**
- 中间客户
- */
- @property (weak, nonatomic) IBOutlet UITextField *filedIntermediateCustomers;
- /**
- 创建人ID
- */
- @property (nonatomic,strong) NSString *createUserID;
- /**
- 创建人
- */
- @property (weak, nonatomic) IBOutlet UIButton *btnCreateUserName;
- /**
- 客户名称
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
- /**
- 联系电话
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtTel;
- /**
- 客户地址
- */
- @property (strong,nonatomic) IBOutlet UITextField *txtCustomerAddress;
- /**
- 开始日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnStaDate;
- /**
- 结束日期
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
- /**
- 有效标示
- */
- @property (strong,nonatomic) IBOutlet UIButton *btnFlagValue;
- @property (strong, nonatomic) IBOutlet UIButton *btnSceneAttachment;
- @property (strong, nonatomic) IBOutlet UIButton *btnDrawingAttachment;
- /**
- 开始日期
- */
- @property (copy, nonatomic) NSString *sStartDate;
- /**
- 结束日期
- */
- @property (copy, nonatomic) NSString *sEndDate;
- /**
- 有效标示
- */
- @property (assign,nonatomic) BOOL boolFlagValue;
- @property(nonatomic,assign) Boolean isExistsSceneAttachment;
- @property(nonatomic,assign) Boolean isExistsDrawingAttachment;
- /**
- 有效标示数据源
- */
- @property (strong,nonatomic) NSMutableArray *valueFlagArr;
- @end
|