物料管理
This commit is contained in:
24
ZR.Service/mes/mm/IService/IMmAgvLocationService.cs
Normal file
24
ZR.Service/mes/mm/IService/IMmAgvLocationService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using ZR.Model;
|
||||
using ZR.Model.Dto;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using ZR.Model.MES.mm;
|
||||
|
||||
namespace ZR.Service.mes.mm.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// agv位置表service接口
|
||||
/// </summary>
|
||||
public interface IMmAgvLocationService : IBaseService<MmAgvLocation>
|
||||
{
|
||||
PagedInfo<MmAgvLocationDto> GetList(MmAgvLocationQueryDto parm);
|
||||
|
||||
MmAgvLocation GetInfo(int Id);
|
||||
|
||||
MmAgvLocation AddMmAgvLocation(MmAgvLocation parm);
|
||||
|
||||
int UpdateMmAgvLocation(MmAgvLocation parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user