You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.Application.Services;
|
|
using Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Mes.DTOs;
|
|
using Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Mes.Inputs;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Mes;
|
|
|
|
public interface IMesProductL7PartsNoteAppService : IApplicationService
|
|
{
|
|
|
|
//Task<bool> CreateAsync(List<MesProductL7PartsNote> noteList);
|
|
|
|
/// <summary>
|
|
/// 获取上次最大rowid
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<int> GetMaxRowID();
|
|
|
|
/// <summary>
|
|
/// 批量添加数据
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
/// <returns></returns>
|
|
Task<List<MesProductL7PartsNoteDTO>> AddManyAsync(List<MesProductL7PartsNoteCreateInput> inputs);
|
|
|
|
/// <summary>
|
|
/// 根据基础信息删除数据
|
|
/// </summary>
|
|
/// <param name="year"></param>
|
|
/// <param name="programCode"></param>
|
|
/// <param name="productNo"></param>
|
|
/// <returns></returns>
|
|
Task DeleteByBaseInfoAsync(string year, string programCode, string productNo);
|
|
}
|
|
|