123456789101112131415161718192021222324252627282930313233 |
- //
- // NYComplaintListViewCell.h
- // jiaPei
- //
- // Created by Ning.ge on 2023/7/3.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ComplaintDataModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface NYComplaintListViewCell : UITableViewCell
- //状态
- @property (weak, nonatomic) IBOutlet UIButton *state_button;
- //名称
- @property (weak, nonatomic) IBOutlet UILabel *name_label;
- //内容
- @property (weak, nonatomic) IBOutlet UILabel *content_label;
- //照片
- @property (weak, nonatomic) IBOutlet UIView *imagelist_view;
- //撤销
- @property (weak, nonatomic) IBOutlet UIButton *cancel_button;
- @property (strong, nonatomic) ComplaintInfoModel *complaintInfoModel;
- @property (nonatomic, strong) RACCommand *cancelCommand;
- @end
- NS_ASSUME_NONNULL_END
|