|
@@ -3,6 +3,7 @@ package com.goafanti.expenseAccount.service;
|
|
|
import com.goafanti.common.model.ExpenseAccount;
|
|
import com.goafanti.common.model.ExpenseAccount;
|
|
|
import com.goafanti.expenseAccount.bo.*;
|
|
import com.goafanti.expenseAccount.bo.*;
|
|
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public interface ExpenseAccountService {
|
|
public interface ExpenseAccountService {
|
|
@@ -54,4 +55,6 @@ public interface ExpenseAccountService {
|
|
|
List<ExpenseAccount> selectByIds(List<String> list);
|
|
List<ExpenseAccount> selectByIds(List<String> list);
|
|
|
|
|
|
|
|
int selectCountByIdsAndType(List<String> list, Integer i);
|
|
int selectCountByIdsAndType(List<String> list, Integer i);
|
|
|
|
|
+
|
|
|
|
|
+ Object updateRealAmount(Integer type, Integer id, BigDecimal amount);
|
|
|
}
|
|
}
|