You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
668 B
24 lines
668 B
1 year ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using SSWMS.Common;
|
||
|
|
||
|
namespace SSWMS.Server
|
||
|
{
|
||
|
public class P_WH_CELL : P_Base_House<WH_CELL>
|
||
|
{
|
||
|
public WH_CELL GetModelByCellCode(string sCellCode)
|
||
|
{
|
||
|
return this._sqlMap.QueryForObject<WH_CELL>("WH_CELL_SELECT_BY_CELL_CODE", sCellCode);
|
||
|
}
|
||
|
|
||
|
public IList<WH_CELL> GetListByCellZ(string sWarehouseCode, int iCellZ)
|
||
|
{
|
||
|
return this._sqlMap.QueryForList<WH_CELL>("WH_CELL_SELECT_BY_CELL_Z", new Hashtable
|
||
|
{
|
||
|
{ "WAREHOUSE_CODE", sWarehouseCode },
|
||
|
{ "CELL_Z", iCellZ }
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|