You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lj_plc/DataBlockHelper/DBHelpers/DB2111Helper.cs

28 lines
1.0 KiB
C#

using DataBlockHelper.Entity.DB2103Entity;
using DataBlockHelper.Entity.DB2111Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBlockHelper.DBHelpers
{
public class DB2111Helper : DBHelper
{
public DB2111Helper()
{
bytes = PlcConnect.Instance.Read("DB2111.0.0", 1682).Content;
}
public ReportDosEntity hwReport_A => new ReportDosEntity(bytes, 1506);
public ReportDosEntity hwReport_B => new ReportDosEntity(bytes, 1528);
public ReportDosEntity cwReport_A => new ReportDosEntity(bytes, 1550);
public ReportDosEntity cwReport_B => new ReportDosEntity(bytes, 1572);
public ReportDosEntity DryDosing_A => new ReportDosEntity(bytes, 1594);
public ReportDosEntity DryDosing_B => new ReportDosEntity(bytes, 1616);
public ReportDosEntity DryDosing_C => new ReportDosEntity(bytes, 1638);
public ReportDosEntity DryDosing_D => new ReportDosEntity(bytes, 1660);
}
}