package com.wgcloud.mapper; import com.wgcloud.entity.ShellState; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; /** * @version v3.3 * @ClassName:ShellStateMapper.java * @author: http://www.wgstart.com * @date: 2021年8月19日 * @Description: ShellStateMapper.java * @Copyright: 2019-2021 wgcloud. All rights reserved. */ @Repository public interface ShellStateMapper { public List selectAllByParams(Map map) throws Exception; public List selectByParams(Map params) throws Exception; public ShellState selectById(String id) throws Exception; public int countByParams(Map map); public void save(ShellState ShellState) throws Exception; public void insertList(List recordList) throws Exception; public int deleteByShellId(String shellId) throws Exception; public int deleteByDate(Map map) throws Exception; public int deleteById(String[] id) throws Exception; public int updateSendByIds(String[] id) throws Exception; public int cancelByShellId(String shellId) throws Exception; public int restartByShellId(String shellId, String shellTime) throws Exception; public int updateById(ShellState ShellState) throws Exception; }