This commit is contained in:
suyl
2021-08-31 11:34:41 +08:00
parent 2e2a636228
commit c7b677fd07
5 changed files with 57 additions and 10 deletions

View File

@@ -42,4 +42,7 @@ type IStoreAcctManager interface {
InsertStoreAcctIncomeAndUpdateStoreAcctBalance(ctx *jxcontext.Context, storeID, price, acctType int, vendorOrderID string, expendID int) (err error)
CheckStoreAcctExpendExist(vendorOrderID string) (isEqual, isZero bool, err error)
GetStoreAcctExpendLastCreateWayBillFee(vendorOrderID string) (expend *dao.GetStoreAcctExpendLastCreateWayBillFeeResult, lastFee int, err error)
//品牌账户
GetBrandBalance(brandID int) (balance int, err error)
}