NYComplaintListViewCell.h 647 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // NYComplaintListViewCell.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/7/3.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ComplaintDataModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface NYComplaintListViewCell : UITableViewCell
  12. //状态
  13. @property (weak, nonatomic) IBOutlet UIButton *state_button;
  14. //名称
  15. @property (weak, nonatomic) IBOutlet UILabel *name_label;
  16. //内容
  17. @property (weak, nonatomic) IBOutlet UILabel *content_label;
  18. //照片
  19. @property (weak, nonatomic) IBOutlet UIView *imagelist_view;
  20. @property (strong, nonatomic) ComplaintInfoModel *complaintInfoModel;
  21. @end
  22. NS_ASSUME_NONNULL_END