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<ShellState> selectAllByParams(Map<String, Object> map) throws Exception;
|
|
public List<ShellState> selectByParams(Map<String, Object> params) throws Exception;
|
|
public ShellState selectById(String id) throws Exception;
|
|
public int countByParams(Map<String, Object> map);
|
|
public void save(ShellState ShellState) throws Exception;
|
|
public void insertList(List<ShellState> recordList) throws Exception;
|
|
public int deleteByShellId(String shellId) throws Exception;
|
|
public int deleteByDate(Map<String, Object> 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;
|
|
|
}
|