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

19 lines
512 B
C#

using DataBlockHelper.Entity.DB2107Entity;
using DataBlockHelper.Entity.DB2105Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataBlockHelper.DBHelpers
{
public class DB2105Helper
{
public List<PlanEntity> Plan => new PlanArrayManager(4, 0, 12).GetList();
public bool[] Status => new FourBoolArrayManager(48).GetList();
public bool[] End => new FourBoolArrayManager(50).GetList();
}
}