You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
C#
57 lines
1.8 KiB
C#
using Estsh.Core.Base;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IKanBanRepository : IBaseRepository<WmsCarArrive>
|
|
{
|
|
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
|
|
public Hashtable MaterialgetListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
|
|
public int ChangeArriveStatus(String orderNo, int loginId, int status);
|
|
|
|
public int ChangeCarInPlantStatus(String orderNo, int loginId, int status);
|
|
|
|
public List<WmsCarArrive> getList(string strWhere, string filedOrder);
|
|
|
|
|
|
public int updateCarArrive(WmsCarArrive htParams);
|
|
|
|
public int saveCarArrive(WmsCarArrive htParams);
|
|
|
|
public List<KeyValueResult> getSelectSupplier();
|
|
|
|
public int ChangeInPlantStatus(String orderNo, int loginId);
|
|
|
|
public int ChangeOutPlantStatus(String orderNo, int loginId);
|
|
|
|
public int ChangeWorkingStatus(String orderNo, int loginId);
|
|
|
|
|
|
public List<WmsCarArrive> GetCarArriveList(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
|
|
public List<WmsCarArrive> GetCarArriveList(string docks, int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
|
|
public List<WmsCarArrive> GetCarArriveTotal(string docks);
|
|
|
|
public List<WmsCarArrive> GetCarInDoor(string s_date);
|
|
|
|
public List<SysVendor> Getdock();
|
|
|
|
public List<WmsMoveHeader> GetPreparation();
|
|
|
|
public int UpdateReceipt40(String dockName);
|
|
}
|
|
}
|