|
|
|
|
using DataBlockHelper.Entity.DB2107Entity;
|
|
|
|
|
using DataBlockHelper.Entity.DB2104Entity;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DataBlockHelper.DBHelpers
|
|
|
|
|
{
|
|
|
|
|
public class DB2104Helper
|
|
|
|
|
{
|
|
|
|
|
public RecipeCommEntity RecipeComm => RecipeCom();
|
|
|
|
|
|
|
|
|
|
private RecipeCommEntity RecipeCom()
|
|
|
|
|
{
|
|
|
|
|
return new RecipeCommEntity();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public EnableStatusEntity EnableStatus => EnableS();
|
|
|
|
|
|
|
|
|
|
private EnableStatusEntity EnableS()
|
|
|
|
|
{
|
|
|
|
|
return new EnableStatusEntity();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public DryerEntity Dryer_D1 => new DryerEntity(58);
|
|
|
|
|
public DryerEntity Dryer_D2 => new DryerEntity(218);
|
|
|
|
|
public DryerEntity Dryer_D3 => new DryerEntity(378);
|
|
|
|
|
public DryerEntity Dryer_D4 => new DryerEntity(538);
|
|
|
|
|
|
|
|
|
|
public GelatEntity Gelat_G1 => new GelatEntity(698);
|
|
|
|
|
public GelatEntity Gelat_G2 => new GelatEntity(858);
|
|
|
|
|
public GelatEntity Gelat_G3 => new GelatEntity(1018);
|
|
|
|
|
public GelatEntity Gelat_G4 => new GelatEntity(1178);
|
|
|
|
|
public GelatEntity Gelat_G5 => new GelatEntity(1338);
|
|
|
|
|
public GelatEntity Gelat_G6 => new GelatEntity(1498);
|
|
|
|
|
public GelatEntity Gelat_G7 => new GelatEntity(1658);
|
|
|
|
|
public GelatEntity Gelat_G8 => new GelatEntity(1818);
|
|
|
|
|
|
|
|
|
|
public WeterEntity Weter_M1 => new WeterEntity(1978);
|
|
|
|
|
public WeterEntity Weter_M2 => new WeterEntity(2178);
|
|
|
|
|
public WeterEntity Weter_M3 => new WeterEntity(2378);
|
|
|
|
|
public WeterEntity Weter_M4 => new WeterEntity(2578);
|
|
|
|
|
public WeterEntity Weter_M5 => new WeterEntity(2778);
|
|
|
|
|
public WeterEntity Weter_M6 => new WeterEntity(2978);
|
|
|
|
|
public WeterEntity Weter_M7 => new WeterEntity(3178);
|
|
|
|
|
public WeterEntity Weter_M8 => new WeterEntity(3378);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|