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.
27 lines
711 B
C#
27 lines
711 B
C#
using SlnMesnac.Model.domain;
|
|
using SlnMesnac.Repository.service.@base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public interface IMesProductOrderService:IBaseService<MesProductOrder>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 根据工单编号获取工单信息
|
|
/// </summary>
|
|
/// <param name="id">主键</param>
|
|
/// <returns></returns>
|
|
MesProductOrder GetMesOrderInfoById(int id);
|
|
|
|
/// <summary>
|
|
/// 更新MES工单信息
|
|
/// </summary>
|
|
/// <param name="orderInfo"></param>
|
|
/// <returns></returns>
|
|
bool UpdateOrderInfo(MesProductOrder orderInfo);
|
|
}
|
|
}
|