package com.wgcloud.mapper; import com.wgcloud.entity.DceState; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; /** * @version v3.3 * @ClassName:DceStateMapper.java * @author: http://www.wgstart.com * @date: 2021年5月14日 * @Description: DceStateMapper * @Copyright: 2019-2021 wgcloud. All rights reserved. */ @Repository public interface DceStateMapper { public List selectAllByParams(Map map) throws Exception; public List selectByParams(Map params) throws Exception; public DceState selectById(String id) throws Exception; public void save(DceState DceState) throws Exception; public void insertList(List recordList) throws Exception; public int deleteByDate(Map map) throws Exception; public int deleteById(String[] id) throws Exception; }