NewRepairDetailListsCell.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // NewRepairDetailListsCell.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. //功能描述: 新增维修明细单元格类
  9. #import <UIKit/UIKit.h>
  10. #import "NewRepairDetailListsCellDelegate.h"
  11. #import "NewRepairItemModel.h"
  12. #import "StatusInfoTextVC.h"
  13. #import "ArgumentSetting.h"
  14. @interface NewRepairDetailListsCell : UITableViewCell<UITextFieldDelegate>
  15. /**
  16. 编码
  17. */
  18. @property (nonatomic, strong) UILabel *code;
  19. /**
  20. 唯一编码
  21. */
  22. @property (nonatomic, strong) UILabel *onlyCode;
  23. /**
  24. 维修数量
  25. */
  26. @property (nonatomic, strong) UILabel *repairQuantity;
  27. /**
  28. 完成数量
  29. */
  30. @property (nonatomic, strong) UILabel *completedQuantity;
  31. /**
  32. 品牌
  33. */
  34. @property (nonatomic, strong) UILabel *brandName;
  35. /**
  36. 回执数量
  37. */
  38. @property (nonatomic, strong) UITextField *receiptQuantity;
  39. /**
  40. 面积
  41. */
  42. @property (nonatomic, strong) UILabel *acreage;
  43. /**
  44. 回执备注
  45. */
  46. @property (nonatomic, strong) UITextField *remark;
  47. /**
  48. 维修id
  49. */
  50. @property (nonatomic,strong) NSString *repairId;
  51. /**
  52. 明细id
  53. */
  54. @property (nonatomic,strong) NSString *detailId;
  55. /**
  56. 委外id
  57. */
  58. @property (nonatomic,strong) NSString *salesDetailId;
  59. /**
  60. 单元格索引
  61. */
  62. @property (nonatomic) NSInteger cellIndex;
  63. /**
  64. 单元格高度
  65. */
  66. @property (nonatomic) CGFloat cellHeight;
  67. /**
  68. 设置新增维修明细frame
  69. @param model <#model description#>
  70. */
  71. - (void)parseInfoModel:(NewRepairItemModel*)model;
  72. /**
  73. 新增维修明细代理
  74. */
  75. @property (nonatomic, weak) id<NewRepairDetailListsCellDelegate> delegate;
  76. @end