using DOAN.Model.MES.product;
using DOAN.Model.Public;
using DOAN.Service.Mobile.IService;
using DOAN.Service.Public.IPublicService;
using Infrastructure.Attribute;
using Microsoft.AspNetCore.Mvc;
namespace DOAN.Service.Mobile;
///
/// 广告管理Service业务层处理
///
[AppService(ServiceType = typeof(IReportFlowService), ServiceLifetime = LifeTime.Transient)]
public class ReportFlowService : BaseService, IReportFlowService
{
public ProWorkorder GetWorkOrderDetail(string workorder)
{
return Context.Queryable().Where(x => x.Workorder == workorder).Single();
}
}