21 lines
424 B
C#
21 lines
424 B
C#
using DOAN.Model;
|
|
using DOAN.Model.MES.mm;
|
|
using DOAN.Model.MES.mm.Dto;
|
|
|
|
namespace DOAN.Service.MES.mm.IService
|
|
{
|
|
|
|
|
|
public interface IMmLinesidebarInventoryCheckService : IBaseService<MmInventoryCheckLog>
|
|
{
|
|
PagedInfo<MmInventoryCheckLogDto> GetList(MmInventoryCheckLogQueryDto parm);
|
|
|
|
|
|
bool Correcting(string id);
|
|
|
|
int UpdateMmInventoryCheckLog(MmInventoryCheckLog model);
|
|
}
|
|
|
|
}
|
|
|