InPutGongWenCell.h 640 B

123456789101112131415161718192021222324
  1. //
  2. // InPutGongWenCell.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TDTableViewCell.h"
  9. #import "UIPlaceHolderTextView.h"
  10. #import "FormFieldsModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface InPutGongWenCell : TDTableViewCell
  13. @property (weak, nonatomic) IBOutlet UILabel *namelab;
  14. @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
  15. @property (weak, nonatomic) IBOutlet UILabel *bgL;
  16. @property (weak, nonatomic) IBOutlet UIPlaceHolderTextView *gongwenContent;
  17. @property (weak, nonatomic) FormFieldsModel *formFieldsModel;
  18. @end
  19. NS_ASSUME_NONNULL_END