package com.ruoyi.cwgl.mapper;
|
|
import java.util.List;
|
import com.ruoyi.cwgl.domain.FundFlowClaimDetail;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
/**
|
* 账单认领明细Mapper接口
|
*
|
* @author ruoyi
|
* @date 2026-01-12
|
*/
|
public interface FundFlowClaimDetailMapper extends BaseMapper<FundFlowClaimDetail>
|
{
|
/**
|
* 查询账单认领明细
|
*
|
* @param id 账单认领明细ID
|
* @return 账单认领明细
|
*/
|
public FundFlowClaimDetail selectFundFlowClaimDetailById(Integer id);
|
|
/**
|
* 查询账单认领明细 记录数
|
*
|
* @param fundFlowClaimDetail 账单认领明细
|
* @return 账单认领明细集合
|
*/
|
public int selectFundFlowClaimDetailCount(FundFlowClaimDetail fundFlowClaimDetail);
|
|
/**
|
* 查询账单认领明细列表
|
*
|
* @param fundFlowClaimDetail 账单认领明细
|
* @return 账单认领明细集合
|
*/
|
public List<FundFlowClaimDetail> selectFundFlowClaimDetailList(FundFlowClaimDetail fundFlowClaimDetail);
|
|
/**
|
* 新增账单认领明细
|
*
|
* @param fundFlowClaimDetail 账单认领明细
|
* @return 结果
|
*/
|
public int insertFundFlowClaimDetail(FundFlowClaimDetail fundFlowClaimDetail);
|
|
/**
|
* 新增账单认领明细[批量]
|
*
|
* @param fundFlowClaimDetails 账单认领明细
|
* @return 结果
|
*/
|
public int insertFundFlowClaimDetailBatch(List<FundFlowClaimDetail> fundFlowClaimDetails);
|
|
/**
|
* 修改账单认领明细
|
*
|
* @param fundFlowClaimDetail 账单认领明细
|
* @return 结果
|
*/
|
public int updateFundFlowClaimDetail(FundFlowClaimDetail fundFlowClaimDetail);
|
|
/**
|
* 修改账单认领明细[批量]
|
*
|
* @param fundFlowClaimDetails 账单认领明细
|
* @return 结果
|
*/
|
public int updateFundFlowClaimDetailBatch(List<FundFlowClaimDetail> fundFlowClaimDetails);
|
|
/**
|
* 删除账单认领明细
|
*
|
* @param id 账单认领明细ID
|
* @return 结果
|
*/
|
public int deleteFundFlowClaimDetailById(Integer id);
|
|
/**
|
* 批量删除账单认领明细
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
public int deleteFundFlowClaimDetailByIds(Integer[] ids);
|
}
|