Browse Source

update

master
wanggang 1 year ago
parent
commit
5610beb156
  1. 2
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs

2
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs

@ -177,6 +177,7 @@ public class VmiAppService : ApplicationService, IVmiService, IJobService, ITran
/// <param name="changedNumber"></param>
/// <param name="data"></param>
/// <returns></returns>
[HttpPost]
public async Task In(VmiLogType logType, string changedNumber, VmiBalance data)
{
var balance = this._balanceRepository.FirstOrDefault(o => o.BillType == data.BillType &&
@ -219,6 +220,7 @@ public class VmiAppService : ApplicationService, IVmiService, IJobService, ITran
/// <param name="changedNumber"></param>
/// <param name="data"></param>
/// <returns></returns>
[HttpPost]
public async Task Out(VmiLogType logType, string changedNumber, VmiLog data)
{
var balance = this._balanceRepository.FirstOrDefault(o => o.BillType == data.BillType &&

Loading…
Cancel
Save