Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWmFgentryInspectService.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2024-04-17 18:48:33 +08:00
using System;
using ZR.Model;
using ZR.Model.Dto;
using ZR.Model.MES.wms;
using System.Collections.Generic;
using ZR.Model.MES.wms.Dto;
2024-04-19 09:56:38 +08:00
using Microsoft.AspNetCore.Mvc;
2024-04-17 18:48:33 +08:00
namespace ZR.Service.mes.wms.IService
{
/// <summary>
/// 成品入库检验service接口
/// </summary>
public interface IWmFgentryInspectService : IBaseService<WmFgentryInspect>
{
2024-04-19 19:41:28 +08:00
int TransformData(string workorder);
2024-04-17 18:48:33 +08:00
PagedInfo<WmFgentryInspectDto> GetList(WmFgentryInspectQueryDto parm);
2024-04-19 09:56:38 +08:00
PagedInfo<WmFgentryInspect_parentDto> GetList_first(WmFgentryInspectQueryDto parm);
2024-04-18 11:36:36 +08:00
PagedInfo<WmFgentryInspectDto> GetList_second(WmFgentryInspectQueryDto parm);
2024-04-17 18:48:33 +08:00
2024-04-18 11:36:36 +08:00
2024-04-17 18:48:33 +08:00
WmFgentryInspect GetInfo(int Id);
WmFgentryInspect AddWmFgentryInspect(WmFgentryInspect parm);
int UpdateWmFgentryInspect(WmFgentryInspect parm);
2024-04-19 09:56:38 +08:00
int BatchQualified(string[] packcode_select,string updateby);
2024-04-19 11:48:56 +08:00
int SetAllQualified(string workorder_selected, string updateby);
2024-04-20 14:05:35 +08:00
int SetAllUnQualified(string workorder_selected, string updateby);
2024-04-19 09:56:38 +08:00
int BatchUnQualified(string[] packcode_select,string updateby);
2024-04-17 18:48:33 +08:00
}
}