// // NYComplaintListViewCell.h // jiaPei // // Created by Ning.ge on 2023/7/3. // Copyright © 2023 JCZ. All rights reserved. // #import #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; //图片浏览 @property (nonatomic, strong) RACCommand *imagesCommand; @end NS_ASSUME_NONNULL_END