2024-04-17 18:48:33 +08:00
|
|
|
using ZR.Model;
|
|
|
|
|
using ZR.Model.MES.wms;
|
|
|
|
|
using ZR.Model.MES.wms.Dto;
|
|
|
|
|
|
|
|
|
|
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-06-07 11:04:26 +08:00
|
|
|
|
2024-04-17 18:48:33 +08:00
|
|
|
WmFgentryInspect GetInfo(int Id);
|
|
|
|
|
|
|
|
|
|
WmFgentryInspect AddWmFgentryInspect(WmFgentryInspect parm);
|
|
|
|
|
|
|
|
|
|
int UpdateWmFgentryInspect(WmFgentryInspect parm);
|
|
|
|
|
|
2024-06-07 11:04:26 +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-06-07 11:04:26 +08:00
|
|
|
int BatchUnQualified(string[] packcode_select, string updateby);
|
2024-04-19 09:56:38 +08:00
|
|
|
|
2024-04-17 18:48:33 +08:00
|
|
|
}
|
|
|
|
|
}
|