123456789101112131415161718192021 |
- //
- // IHServiceCellDelegate.swift
- // Inhealth
- //
- // Created by weclouds on 2019/12/19.
- // Copyright © 2019 weclouds. All rights reserved.
- //
- import UIKit
- @objc protocol IHServiceCellDelegate : NSObjectProtocol {
- ///查看详情
- @objc func seeDetails(for indexPath:IndexPath)
- ///删除设备
- @objc func deleteEquipment(for indexPath:IndexPath)
- ///维修设备
- @objc optional func repairEquipment(for indexPath:IndexPath)
- }
|