27 lines
727 B
C#
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;
|
|
}
|
|
}
|
|
}
|