NYComplaintListViewCell.h 856 B

1234567891011121314151617181920212223242526272829303132333435
  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. //撤销
  21. @property (weak, nonatomic) IBOutlet UIButton *cancel_button;
  22. @property (strong, nonatomic) ComplaintInfoModel *complaintInfoModel;
  23. //撤销
  24. @property (nonatomic, strong) RACCommand *cancelCommand;
  25. //图片浏览
  26. @property (nonatomic, strong) RACCommand *imagesCommand;
  27. @end
  28. NS_ASSUME_NONNULL_END