JycountMapper.java 1.3 KB
package com.lhcredit.project.business.jycount.mapper;

import com.lhcredit.project.business.jycount.domain.Jycount;
import java.util.List;

/**
 * 经营异常统计 数据层
 *
 * @author lhcredit
 * @date 2025-11-18
 */
public interface JycountMapper {
    /**
     * 查询经营异常统计信息
     *
     * @param id 经营异常统计ID
     * @return 经营异常统计信息
     */
    public Jycount selectJycountById(Long id);

    /**
     * 查询经营异常统计列表
     *
     * @param jycount 经营异常统计信息
     * @return 经营异常统计集合
     */
    public List<Jycount> selectJycountList(Jycount jycount);

    /**
     * 新增经营异常统计
     *
     * @param jycount 经营异常统计信息
     * @return 结果
     */
    public int insertJycount(Jycount jycount);

    /**
     * 修改经营异常统计
     *
     * @param jycount 经营异常统计信息
     * @return 结果
     */
    public int updateJycount(Jycount jycount);

    /**
     * 删除经营异常统计
     *
     * @param id 经营异常统计ID
     * @return 结果
     */
    public int deleteJycountById(Long id);

    /**
     * 批量删除经营异常统计
     *
     * @param ids 需要删除的数据ID
     * @return 结果
     */
    public int deleteJycountByIds(String[] ids);

}