36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using System;
|
|
using ZR.Model;
|
|
using ZR.Model.Dto;
|
|
using ZR.Model.MES.wms;
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.wms.Dto;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ZR.Service.mes.wms.IService
|
|
{
|
|
/// <summary>
|
|
/// 成品入库检验service接口
|
|
/// </summary>
|
|
public interface IWmFgentryInspectService : IBaseService<WmFgentryInspect>
|
|
{
|
|
|
|
int TransformData(string workorder);
|
|
PagedInfo<WmFgentryInspectDto> GetList(WmFgentryInspectQueryDto parm);
|
|
PagedInfo<WmFgentryInspect_parentDto> GetList_first(WmFgentryInspectQueryDto parm);
|
|
PagedInfo<WmFgentryInspectDto> GetList_second(WmFgentryInspectQueryDto parm);
|
|
|
|
|
|
WmFgentryInspect GetInfo(int Id);
|
|
|
|
WmFgentryInspect AddWmFgentryInspect(WmFgentryInspect parm);
|
|
|
|
int UpdateWmFgentryInspect(WmFgentryInspect parm);
|
|
|
|
int BatchQualified(string[] packcode_select,string updateby);
|
|
|
|
int SetAllQualified(string workorder_selected, string updateby);
|
|
int BatchUnQualified(string[] packcode_select,string updateby);
|
|
|
|
}
|
|
}
|