package com.wgcloud.mapper;
|
|
import com.wgcloud.entity.CustomState;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @version v3.3
|
* @ClassName:CustomStateMapper.java
|
* @author: http://www.wgstart.com
|
* @date: 2022年9月16日
|
* @Description: CustomStateMapper.java
|
* @Copyright: 2019-2022 wgcloud. All rights reserved.
|
*/
|
@Repository
|
public interface CustomStateMapper {
|
|
public List<CustomState> selectAllByParams(Map<String, Object> map) throws Exception;
|
|
public List<CustomState> selectByParams(Map<String, Object> params) throws Exception;
|
|
public CustomState selectById(String id) throws Exception;
|
|
public int selectByParamsCount(Map<String, Object> map);
|
|
public void save(CustomState customState) throws Exception;
|
|
public void insertList(List<CustomState> recordList) throws Exception;
|
|
public int deleteByCustomInfoId(String customInfoId) throws Exception;
|
|
public int deleteByDate(Map<String, Object> map) throws Exception;
|
|
public int deleteById(String[] id) throws Exception;
|
|
|
}
|