zhuangpei-mesbackend/ZR.Service/MES/andon/AndonInteractionService.cs
2024-06-20 13:37:46 +08:00

27 lines
727 B
C#

using Infrastructure.Attribute;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.Dto;
using ZR.Model.MES.andon;
using ZR.Service.MES.andon.IService;
namespace ZR.Service.MES.andon
{
[AppService(ServiceType = typeof(IAndonInteractionService), ServiceLifetime = LifeTime.Transient)]
public class AndonInteractionService : BaseService<AndonFaultRecord>, IAndonInteractionService
{
/// <summary>
/// 呼叫请求
/// </summary>
/// <param name="query"></param>
/// <returns></returns>
public bool CallHandle(AndonAskQueryDto query)
{
return true;
}
}
}