123456789101112131415161718192021222324 |
- //
- // InPutGongWenCell.h
- // smartRhino
- //
- // Created by tederen on 2019/11/2.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "TDTableViewCell.h"
- #import "UIPlaceHolderTextView.h"
- #import "FormFieldsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface InPutGongWenCell : TDTableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *namelab;
- @property (weak, nonatomic) IBOutlet UIImageView *haveNeedImageView;
- @property (weak, nonatomic) IBOutlet UILabel *bgL;
- @property (weak, nonatomic) IBOutlet UIPlaceHolderTextView *gongwenContent;
- @property (weak, nonatomic) FormFieldsModel *formFieldsModel;
- @end
- NS_ASSUME_NONNULL_END
|