Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IAreaService.cs

61 lines
1.3 KiB
C#
Raw Normal View History

using System.Collections.ObjectModel;
using ZR.Model.MES.wms;
using ZR.Model.MES.wms.POJO.DTO;
using ZR.Model.MES.wms.POJO.query;
namespace ZR.Service.mes.wms.IService
{
public interface IAreaService
{
/**
*
*
* @param id
* @return
*/
public WmsArea SelectById(long id);
/**
*
*
* @param query
* @param page
* @return
*/
public List<WmsArea> SelectList(AreaQuery query, Pageable page);
/**
*
*
* @param area
* @return
*/
public int Insert(WmsArea area);
/**
*
*
* @param area
* @return
*/
public int Update(WmsArea area);
/**
*
*
* @param ids
* @return
*/
public int DeleteByIds(long[] ids);
/**
*
*
* @param id
* @return
*/
public int DeleteById(long id);
public List<WmsArea> SelectByIdIn(Collection<long> ids);
}
}