| | |
| | | package com.nanometer.smartlab.dao; |
| | | |
| | | import com.nanometer.smartlab.entity.BaseMeta; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.dao.DataAccessException; |
| | | |
| | | import java.util.List; |
| | |
| | | public int deleteBaseMeta(String id) throws DataAccessException; |
| | | public int deleteBaseMetas(List<String> ids) throws DataAccessException; |
| | | public List<BaseMeta> getAllBaseMeta() throws DataAccessException; |
| | | |
| | | BaseMeta selectBaseMeta(@Param("groupId") String groupId, @Param("key")String key,@Param("value") String value); |
| | | } |