123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.ruoyi.finance.mapper;
- import com.ruoyi.finance.domain.TFee;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- import java.util.Map;
- /**
- * 财务数据主Mapper接口
- *
- * @author ruoyi
- * @date 2021-01-18
- */
- public interface TFeeMapper {
- /**
- * 查询财务数据主
- *
- * @param fId 财务数据主ID
- * @return 财务数据主
- */
- public TFee selectTFeeById(Long fId);
- /**
- * 查询财务数据主列表
- *
- * @param tFee 财务数据主
- * @return 财务数据主集合
- */
- public List<TFee> selectTFeeList(TFee tFee);
- /**
- * 新增财务数据主
- *
- * @param tFee 财务数据主
- * @return 结果
- */
- public int insertTFee(TFee tFee);
- /**
- * 修改财务数据主
- *
- * @param tFee 财务数据主
- * @return 结果
- */
- public int updateTFee(TFee tFee);
- /**
- * 删除财务数据主
- *
- * @param fId 财务数据主ID
- * @return 结果
- */
- public int deleteTFeeById(Long fId);
- /**
- * 批量删除财务数据主
- *
- * @param fIds 需要删除的数据ID
- * @return 结果
- */
- public int deleteTFeeByIds(Long[] fIds);
- /**
- * 查询 对账、 收费 数据
- * @return
- */
- public List<Map<String, Object>> warehouseBillsFeesList(@Param("map") Map<String, Object> map);
- }
|