CustomerFilingSearchCell.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //
  2. // CustomerFilingSearchCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/8/28.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SideSlipBaseTableViewCell.h"
  10. @interface CustomerFilingSearchCell : SideSlipBaseTableViewCell
  11. /**
  12. 中间客户
  13. */
  14. @property (weak, nonatomic) IBOutlet UITextField *filedIntermediateCustomers;
  15. /**
  16. 创建人ID
  17. */
  18. @property (nonatomic,strong) NSString *createUserID;
  19. /**
  20. 创建人
  21. */
  22. @property (weak, nonatomic) IBOutlet UIButton *btnCreateUserName;
  23. /**
  24. 客户名称
  25. */
  26. @property (strong,nonatomic) IBOutlet UITextField *txtCustomerName;
  27. /**
  28. 联系电话
  29. */
  30. @property (strong,nonatomic) IBOutlet UITextField *txtTel;
  31. /**
  32. 客户地址
  33. */
  34. @property (strong,nonatomic) IBOutlet UITextField *txtCustomerAddress;
  35. /**
  36. 开始日期
  37. */
  38. @property (strong,nonatomic) IBOutlet UIButton *btnStaDate;
  39. /**
  40. 结束日期
  41. */
  42. @property (strong,nonatomic) IBOutlet UIButton *btnEndDate;
  43. /**
  44. 有效标示
  45. */
  46. @property (strong,nonatomic) IBOutlet UIButton *btnFlagValue;
  47. @property (strong, nonatomic) IBOutlet UIButton *btnSceneAttachment;
  48. @property (strong, nonatomic) IBOutlet UIButton *btnDrawingAttachment;
  49. /**
  50. 开始日期
  51. */
  52. @property (copy, nonatomic) NSString *sStartDate;
  53. /**
  54. 结束日期
  55. */
  56. @property (copy, nonatomic) NSString *sEndDate;
  57. /**
  58. 有效标示
  59. */
  60. @property (assign,nonatomic) BOOL boolFlagValue;
  61. @property(nonatomic,assign) Boolean isExistsSceneAttachment;
  62. @property(nonatomic,assign) Boolean isExistsDrawingAttachment;
  63. /**
  64. 有效标示数据源
  65. */
  66. @property (strong,nonatomic) NSMutableArray *valueFlagArr;
  67. @end