// // 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 (strong, nonatomic) ComplaintInfoModel *complaintInfoModel; @end NS_ASSUME_NONNULL_END