Files
kunshan-bzfm-mes-backend/DOAN.Service/Mobile/ReportFlowService.cs
2024-12-03 19:21:32 +08:00

23 lines
652 B
C#

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;
/// <summary>
/// 广告管理Service业务层处理
/// </summary>
[AppService(ServiceType = typeof(IReportFlowService), ServiceLifetime = LifeTime.Transient)]
public class ReportFlowService : BaseService<ProReportwork01>, IReportFlowService
{
public ProWorkorder GetWorkOrderDetail(string workorder)
{
return Context.Queryable<ProWorkorder>().Where(x => x.Workorder == workorder).Single();
}
}