21 lines
547 B
C#
21 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Model.SC;
|
|
|
|
namespace WMS.IData.ISC
|
|
{
|
|
public interface ICUX_WMS_FIX_ISSUE_ITF
|
|
{
|
|
DataTable Get_CUX_WMS_FIX_ISSUE_ITF(Mod_CUX_WMS_FIX_ISSUE_ITF model, string startTime, string endTime);
|
|
|
|
DataTable Get_CUX_WMS_FIX_FINISH_ITF(Mod_CUX_WMS_FIX_FINISH_ITF model);
|
|
|
|
DataTable Get_CUX_WMS_FIX_LOT_ITF(Mod_CUX_WMS_FIX_LOT_ITF model, string startTime, string endTime);
|
|
|
|
}
|
|
}
|