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/DB91Helper.cs

30 lines
1.3 KiB
C#

using DataBlockHelper.Entity.DB91Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBlockHelper.DBHelpers
{
public class DB91Helper
{
public ForMotorEntity DM1GDP01 => new ForMotorEntity(0);
public ForMotorEntity DM1ASIG01 => new ForMotorEntity(2);
public ForMotorEntity DM1BSIG01 => new ForMotorEntity(4);
public ForMotorEntity DM1CSIG01 => new ForMotorEntity(6);
public ForMotorEntity DM1DSIG01 => new ForMotorEntity(8);
public ForMotorEntity DM1GDS01 => new ForMotorEntity(10);
public ForMotorEntity DM1GDS02 => new ForMotorEntity(12);
public ForMotorEntity DM1GDS03 => new ForMotorEntity(14);
public ForMotorEntity DM1GDS04 => new ForMotorEntity(16);
public ForMotorEntity DM1GDS05 => new ForMotorEntity(18);
public ForMotorSToTEntity DM1GDS06 => new ForMotorSToTEntity(20);
public ForMotorSToTEntity DM1GDS07 => new ForMotorSToTEntity(28);
public ForMotorVFD DM1DSM01 => new ForMotorVFD(36);
public ForMotorVFD DM2DSM01 => new ForMotorVFD(50);
public ForMotorVFD DM3DSM01 => new ForMotorVFD(64);
public ForMotorVFD DM1GDS12 => new ForMotorVFD(78);
}
}