IHServiceCellDelegate.swift 457 B

123456789101112131415161718192021
  1. //
  2. // IHServiceCellDelegate.swift
  3. // Inhealth
  4. //
  5. // Created by weclouds on 2019/12/19.
  6. // Copyright © 2019 weclouds. All rights reserved.
  7. //
  8. import UIKit
  9. @objc protocol IHServiceCellDelegate : NSObjectProtocol {
  10. ///查看详情
  11. @objc func seeDetails(for indexPath:IndexPath)
  12. ///删除设备
  13. @objc func deleteEquipment(for indexPath:IndexPath)
  14. ///维修设备
  15. @objc optional func repairEquipment(for indexPath:IndexPath)
  16. }