20 lines
524 B
C#
20 lines
524 B
C#
|
|
using DOAN.Model.BZFM;
|
|||
|
|
using DOAN.Model.MES.order;
|
|||
|
|
using DOAN.Model.MES.SmartScreen.Material;
|
|||
|
|
using DOAN.Model.MES.SmartScreen.Order.Dto;
|
|||
|
|
|
|||
|
|
namespace DOAN.Service.MES.SmartScreen.Order.IService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 采购订单service接口
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IMaterialSmartScreenService : IBaseService<MmMaterial>
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取物料大屏数据
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
MaterialScreenDto GetMaterialScreenData();
|
|||
|
|
}
|
|||
|
|
}
|