SifadictMapper.java 1.38 KB
package com.lhcredit.project.business.sifadict.mapper;

import com.lhcredit.project.business.sifadict.domain.Sifadict;
import java.util.List;

/**
 * 司法金额字典 数据层
 *
 * @author lhcredit
 * @date 2024-05-14
 */
public interface SifadictMapper {
    /**
     * 查询司法金额字典信息
     *
     * @param id 司法金额字典ID
     * @return 司法金额字典信息
     */
    public Sifadict selectSifadictById(Integer id);

    /**
     * 查询司法金额字典列表
     *
     * @param sifadict 司法金额字典信息
     * @return 司法金额字典集合
     */
    public List<Sifadict> selectSifadictList(Sifadict sifadict);

    /**
     * 新增司法金额字典
     *
     * @param sifadict 司法金额字典信息
     * @return 结果
     */
    public int insertSifadict(Sifadict sifadict);

    /**
     * 修改司法金额字典
     *
     * @param sifadict 司法金额字典信息
     * @return 结果
     */
    public int updateSifadict(Sifadict sifadict);

    /**
     * 删除司法金额字典
     *
     * @param id 司法金额字典ID
     * @return 结果
     */
    public int deleteSifadictById(Integer id);

    /**
     * 批量删除司法金额字典
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteSifadictByIds(String[] ids);

    public String selectSifadictByLevel(String level);
}