38 lines
1.0 KiB
C#
38 lines
1.0 KiB
C#
using Infrastructure.Attribute;
|
|
using Infrastructure.Extensions;
|
|
using Infrastructure.Model;
|
|
using MDM.Model.Plant;
|
|
using MDM.Model.Process;
|
|
using Microsoft.AspNetCore.JsonPatch.Operations;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using NLog;
|
|
using RIZO.Model.Mes;
|
|
using RIZO.Model.MES.product_trace;
|
|
using RIZO.Repository;
|
|
using RIZO.Service.MES.product.IService;
|
|
using RIZO.Service.PLC;
|
|
using S7.Net;
|
|
using SqlSugar.IOC;
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RIZO.Service.PLCBackground.Stations.Into
|
|
{
|
|
/// <summary>
|
|
/// OP点散热胶GF1500
|
|
/// </summary>
|
|
[AppService(ServiceType = typeof(PlcIntoStationService_OP020_3), ServiceLifetime = LifeTime.Singleton)]
|
|
public class PlcIntoStationService_OP020_3 : PlcIntoStationService_Common
|
|
{
|
|
public PlcIntoStationService_OP020_3(IOptions<OptionsSetting> options) : base(options)
|
|
{
|
|
WorkstationCode = "OP020_3";
|
|
}
|
|
}
|
|
|
|
}
|
|
|