| | |
| | | package com.wgcloud.mapper; |
| | | |
| | | import com.wgcloud.entity.Equipment; |
| | | import com.wgcloud.entity.FailureLogging; |
| | | import com.wgcloud.entity.WorkLogging; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author kdq |
| | |
| | | public interface FailureLoggingMapper { |
| | | |
| | | public void save(FailureLogging failureLogging) throws Exception; |
| | | |
| | | public List<FailureLogging> selectAllByParams(Map<String, Object> map) throws Exception; |
| | | |
| | | public List<FailureLogging> selectByParams(Map<String, Object> params) throws Exception; |
| | | |
| | | public Equipment selectById(String id) throws Exception; |
| | | |
| | | public int deleteById(String[] id) throws Exception; |
| | | |
| | | public int countByParams(Map<String, Object> params) throws Exception; |
| | | |
| | | } |