TDebitCreditMapper.java 1.2 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
package com.zehong.system.mapper;

import java.util.List;
import com.zehong.system.domain.TDebitCredit;

/**
 * 借贷Mapper接口
 * 
 * @author zehong
 * @date 2023-06-20
 */
public interface TDebitCreditMapper 
{
    /**
     * 查询借贷
     * 
     * @param debitId 借贷ID
     * @return 借贷
     */
    public TDebitCredit selectTDebitCreditById(Long debitId);

    /**
     * 查询借贷列表
     * 
     * @param tDebitCredit 借贷
     * @return 借贷集合
     */
    public List<TDebitCredit> selectTDebitCreditList(TDebitCredit tDebitCredit);

    /**
     * 新增借贷
     * 
     * @param tDebitCredit 借贷
     * @return 结果
     */
    public int insertTDebitCredit(TDebitCredit tDebitCredit);

    /**
     * 修改借贷
     * 
     * @param tDebitCredit 借贷
     * @return 结果
     */
    public int updateTDebitCredit(TDebitCredit tDebitCredit);

    /**
     * 删除借贷
     * 
     * @param debitId 借贷ID
     * @return 结果
     */
    public int deleteTDebitCreditById(Long debitId);

    /**
     * 批量删除借贷
     * 
     * @param debitIds 需要删除的数据ID
     * @return 结果
     */
    public int deleteTDebitCreditByIds(Long[] debitIds);
}