zhangsiqi
3 months ago
3 changed files with 89 additions and 0 deletions
@ -0,0 +1,75 @@ |
|||
package com.ruoyi.system.service; |
|||
|
|||
import java.util.List; |
|||
import com.ruoyi.system.domain.BaseExpenseConfirmAmount; |
|||
|
|||
/** |
|||
* 报销打款记录Service接口 |
|||
* |
|||
* @author zhang |
|||
* @date 2024-09-06 |
|||
*/ |
|||
public interface IBaseExpenseConfirmAmountService |
|||
{ |
|||
/** |
|||
* 查询报销打款记录 |
|||
* |
|||
* @param expenseAmountId 报销打款记录ID |
|||
* @return 报销打款记录 |
|||
*/ |
|||
public BaseExpenseConfirmAmount selectBaseExpenseConfirmAmountById(Long expenseAmountId); |
|||
|
|||
/** |
|||
* 查询报销打款记录列表 |
|||
* |
|||
* @param baseExpenseConfirmAmount 报销打款记录 |
|||
* @return 报销打款记录集合 |
|||
*/ |
|||
public List<BaseExpenseConfirmAmount> selectBaseExpenseConfirmAmountList(BaseExpenseConfirmAmount baseExpenseConfirmAmount); |
|||
|
|||
/** |
|||
* 新增报销打款记录 |
|||
* |
|||
* @param baseExpenseConfirmAmount 报销打款记录 |
|||
* @return 结果 |
|||
*/ |
|||
public int insertBaseExpenseConfirmAmount(BaseExpenseConfirmAmount baseExpenseConfirmAmount); |
|||
|
|||
/** |
|||
* 修改报销打款记录 |
|||
* |
|||
* @param baseExpenseConfirmAmount 报销打款记录 |
|||
* @return 结果 |
|||
*/ |
|||
public int updateBaseExpenseConfirmAmount(BaseExpenseConfirmAmount baseExpenseConfirmAmount); |
|||
|
|||
/** |
|||
* 批量删除报销打款记录 |
|||
* |
|||
* @param ids 需要删除的数据ID |
|||
* @return 结果 |
|||
*/ |
|||
public int deleteBaseExpenseConfirmAmountByIds(String ids); |
|||
|
|||
/** |
|||
* 删除报销打款记录信息 |
|||
* |
|||
* @param expenseAmountId 报销打款记录ID |
|||
* @return 结果 |
|||
*/ |
|||
public int deleteBaseExpenseConfirmAmountById(Long expenseAmountId); |
|||
|
|||
/** |
|||
* 作废报销打款记录 |
|||
* @param expenseAmountId 报销打款记录ID |
|||
* @return |
|||
*/ |
|||
int cancelBaseExpenseConfirmAmountById(Long expenseAmountId); |
|||
|
|||
/** |
|||
* 恢复报销打款记录 |
|||
* @param expenseAmountId 报销打款记录ID |
|||
* @return |
|||
*/ |
|||
int restoreBaseExpenseConfirmAmountById(Long expenseAmountId); |
|||
} |
Loading…
Reference in new issue