diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs
index 9c03793..0979329 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/DeliverInitAction.cs
@@ -59,6 +59,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver
ThreeWayValveEntity ThreeWayValveE = new ThreeWayValveEntity();
LjSwitchEntity LjSwitchE = new LjSwitchEntity();
MCLabelEntity LabelE = new MCLabelEntity();
+ ControlCabinetEntity CabinetE = new ControlCabinetEntity();
+
///
/// 报警滚动条
///
@@ -103,6 +105,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver
ControlsHelper.ControlImport(ThreeWayValveE, Controls);
ControlsHelper.ControlImport(LjSwitchE, Controls);
ControlsHelper.ControlImport(LabelE, Controls);
+ ControlsHelper.ControlImport(CabinetE, Controls);
this.AlarmMoveText.Font = new Font("宋体", 15f, FontStyle.Regular, GraphicsUnit.Point, 134);
this.AlarmMoveText.ForeColor = Color.White;
@@ -408,6 +411,19 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver
PlcTemp.DM1DSM01_Alarm = DB91.DM1DSM01.Alarm;
PlcTemp.DM2DSM01_Alarm = DB91.DM2DSM01.Alarm;
PlcTemp.DM3DSM01_Alarm = DB91.DM3DSM01.Alarm;
+
+ PlcTemp.DM1ASIG01_Set = DB91.DM1ASIG01.Running;
+ PlcTemp.DM1BSIG01_Set = DB91.DM1BSIG01.Running;
+ PlcTemp.DM1CSIG01_Set = DB91.DM1CSIG01.Running;
+ PlcTemp.DM1DSIG01_Set = DB91.DM1DSIG01.Running;
+ PlcTemp.DM1ESIG01_Set = DB91.DM1ESIG01.Running;
+
+ PlcTemp.DM1ASIG01_Alarm = DB91.DM1ASIG01.Alarm;
+ PlcTemp.DM1BSIG01_Alarm = DB91.DM1BSIG01.Alarm;
+ PlcTemp.DM1CSIG01_Alarm = DB91.DM1CSIG01.Alarm;
+ PlcTemp.DM1DSIG01_Alarm = DB91.DM1DSIG01.Alarm;
+ PlcTemp.DM1ESIG01_Alarm = DB91.DM1ESIG01.Alarm;
+
}
private void DBOtherGetData()
@@ -607,6 +623,23 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver
ControlsHelper.SetSwitchLight(SwitchlightE.DM1DSM01, PlcTemp.DM1DSM01_Set, PlcTemp.DM1DSM01_Alarm);
ControlsHelper.SetSwitchLight(SwitchlightE.DM2DSM01, PlcTemp.DM2DSM01_Set, PlcTemp.DM2DSM01_Alarm);
ControlsHelper.SetSwitchLight(SwitchlightE.DM3DSM01, PlcTemp.DM3DSM01_Set, PlcTemp.DM3DSM01_Alarm);
+
+ ControlsHelper.SetControlCabinet(CabinetE.DM1ASIG011, PlcTemp.DM1ASIG01_Set, PlcTemp.DM1ASIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1ASIG012, PlcTemp.DM1ASIG01_Set, PlcTemp.DM1ASIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1ASIG013, PlcTemp.DM1ASIG01_Set, PlcTemp.DM1ASIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1ASIG014, PlcTemp.DM1ASIG01_Set, PlcTemp.DM1ASIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1BSIG011, PlcTemp.DM1BSIG01_Set, PlcTemp.DM1BSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1BSIG012, PlcTemp.DM1BSIG01_Set, PlcTemp.DM1BSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1CSIG011, PlcTemp.DM1CSIG01_Set, PlcTemp.DM1CSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1CSIG012, PlcTemp.DM1CSIG01_Set, PlcTemp.DM1CSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1CSIG013, PlcTemp.DM1CSIG01_Set, PlcTemp.DM1CSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1CSIG014, PlcTemp.DM1CSIG01_Set, PlcTemp.DM1CSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1DSIG011, PlcTemp.DM1DSIG01_Set, PlcTemp.DM1DSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1DSIG012, PlcTemp.DM1DSIG01_Set, PlcTemp.DM1DSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1DSIG013, PlcTemp.DM1DSIG01_Set, PlcTemp.DM1DSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1DSIG014, PlcTemp.DM1DSIG01_Set, PlcTemp.DM1DSIG01_Alarm);
+ ControlsHelper.SetControlCabinet(CabinetE.DM1ESIG01, PlcTemp.DM1ESIG01_Set, PlcTemp.DM1ESIG01_Alarm);
+
}
private void DBOtherSetData()
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs
index 28f5f84..0d44336 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/DeliverEntity.cs
@@ -226,4 +226,23 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver.Entity
public HslBottle Bottle14 { get; set; }
public HslBottle Bottle15 { get; set; }
}
+
+ internal class ControlCabinetEntity
+ {
+ public ControlCabinet DM1ASIG011 { get; set; }
+ public ControlCabinet DM1ASIG012 { get; set; }
+ public ControlCabinet DM1ASIG013 { get; set; }
+ public ControlCabinet DM1ASIG014 { get; set; }
+ public ControlCabinet DM1BSIG011 { get; set; }
+ public ControlCabinet DM1BSIG012 { get; set; }
+ public ControlCabinet DM1CSIG011 { get; set; }
+ public ControlCabinet DM1CSIG012 { get; set; }
+ public ControlCabinet DM1CSIG013 { get; set; }
+ public ControlCabinet DM1CSIG014 { get; set; }
+ public ControlCabinet DM1DSIG011 { get; set; }
+ public ControlCabinet DM1DSIG012 { get; set; }
+ public ControlCabinet DM1DSIG013 { get; set; }
+ public ControlCabinet DM1DSIG014 { get; set; }
+ public ControlCabinet DM1ESIG01 { get; set; }
+ }
}
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/PlcTempEntity.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/PlcTempEntity.cs
index 2e38814..27bc0bb 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/PlcTempEntity.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjDeliver/Entity/PlcTempEntity.cs
@@ -346,5 +346,16 @@ namespace Mesnac.Action.ChemicalWeighing.LjDeliver.Entity
public bool HighLevel1 { get; set; }
public bool HighLevel2 { get; set; }
public bool HighLevel3 { get; set; }
+
+ public bool DM1ASIG01_Set { get; set; }
+ public bool DM1BSIG01_Set { get; set; }
+ public bool DM1CSIG01_Set { get; set; }
+ public bool DM1DSIG01_Set { get; set; }
+ public bool DM1ESIG01_Set { get; set; }
+ public bool DM1ASIG01_Alarm { get; set; }
+ public bool DM1BSIG01_Alarm { get; set; }
+ public bool DM1CSIG01_Alarm { get; set; }
+ public bool DM1DSIG01_Alarm { get; set; }
+ public bool DM1ESIG01_Alarm { get; set; }
}
}
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjPlanning/LjPlanningPlcHelp.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjPlanning/LjPlanningPlcHelp.cs
index 75cb861..e74b370 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjPlanning/LjPlanningPlcHelp.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjPlanning/LjPlanningPlcHelp.cs
@@ -41,8 +41,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin = 58;
- DownCleanD1Recipe(begin);
+ int begin = 58;
+ DownCleanD1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
var view = recipePlcViews[i];
@@ -57,14 +57,14 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
- PlcConnect.Instance.Write($"DB2104.53.6",true);
+ PlcConnect.Instance.Write($"DB2104.53.6", true);
}
-
-
-
+
+
+
public static void DownD2Recipe(List recipePlcViews, List recipeSteps)
{
@@ -85,11 +85,11 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.53.7", true);
-
+
}
@@ -112,7 +112,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
PlcConnect.Instance.Write($"DB2104.54.0", true);
}
@@ -137,17 +137,17 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.54.1", true);
-
+
}
-
-
-
-
- public static void DownG1Recipe(List recipePlcViews,List recipeSteps)
+
+
+
+
+ public static void DownG1Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
int begin = 1018;
@@ -158,21 +158,21 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
Dowd(begin, view);
begin += 10;
}
-
+
begin = 1038;
for (int i = 0; i < recipeSteps.Count(); i++)
{
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
- PlcConnect.Instance.Write($"DB2104.53.6",true);
+
+ PlcConnect.Instance.Write($"DB2104.53.6", true);
}
- public static void DownG2Recipe(List recipePlcViews, List recipeSteps)
+ public static void DownG2Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
int begin = 1158;
@@ -184,9 +184,9 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
begin += 10;
}
-
-
-
+
+
+
begin = 1178;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -194,9 +194,9 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.54.2", true);
}
public static void DownG3Recipe(List recipePlcViews, List recipeSteps)
@@ -211,8 +211,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
begin += 10;
}
-
-
+
+
begin = 1318;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -220,15 +220,15 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.53.7", true);
}
public static void DownG4Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin = 1438;
+ int begin = 1438;
DownCleanG1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
@@ -236,7 +236,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
Dowd(begin, view);
begin += 10;
}
-
+
begin = 1458;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -244,18 +244,18 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.54.4", true);
-
+
}
-
-
+
+
public static void DownG5Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin = 1578;
+ int begin = 1578;
DownCleanG1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
@@ -264,8 +264,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
begin += 10;
}
-
-
+
+
begin = 1598;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -273,15 +273,15 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.54.6", true);
}
public static void DownG6Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin =1718;
+ int begin = 1718;
DownCleanG1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
@@ -290,9 +290,9 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
begin += 10;
}
-
-
-
+
+
+
begin = 1738;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -300,15 +300,15 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.54.7", true);
}
public static void DownG7Recipe(List recipePlcViews, List recipeSteps)
{
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin =1858;
+ int begin = 1858;
DownCleanG1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
@@ -317,8 +317,8 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
begin += 10;
}
-
-
+
+
begin = 1878;
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -326,16 +326,16 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
PlcConnect.Instance.Write($"DB2104.55.0", true);
-
+
}
public static void DownG8Recipe(List recipePlcViews, List recipeSteps)
{
-
+
recipePlcViews = recipePlcViews.Where(x => x.Bin != -1).ToList();
- int begin =1998;
+ int begin = 1998;
DownCleanG1Recipe(begin);
for (int i = 0; i < recipePlcViews.Count(); i++)
{
@@ -343,23 +343,23 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
Dowd(begin, view);
begin += 10;
}
-
+
begin = 2018;
for (int i = 0; i < recipeSteps.Count(); i++)
{
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
PlcConnect.Instance.Write($"DB2104.55.1", true);
-
+
}
public static void DownM1Recipe(List recipeSteps)
{
-
+
int begin = 2138;
DownM1CleanRecipe(begin);
for (int i = 0; i < recipeSteps.Count(); i++)
@@ -367,11 +367,11 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowMSteps(begin, view);
begin += 20;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.55.2", true);
-
+
}
@@ -385,9 +385,9 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowMSteps(begin, view);
begin += 20;
-
+
}
-
+
PlcConnect.Instance.Write($"DB2104.55.3", true);
}
public static void DownM3Recipe(List recipeSteps)
@@ -399,80 +399,80 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var view = recipeSteps[i];
DowMSteps(begin, view);
begin += 20;
-
+
}
PlcConnect.Instance.Write($"DB2104.55.4", true);
}
-
- public static void DownM4Recipe(List recipeSteps)
- {
- int begin = 2738;
- DownM1CleanRecipe(begin);
- for (int i = 0; i < recipeSteps.Count(); i++)
- {
- var view = recipeSteps[i];
- DowMSteps(begin, view);
- begin += 20;
-
- }
-
- PlcConnect.Instance.Write($"DB2104.55.5", true);
- }
- public static void DownM5Recipe(List recipeSteps)
- {
- int begin = 2938;
- DownM1CleanRecipe(begin);
- for (int i = 0; i < recipeSteps.Count(); i++)
- {
- var view = recipeSteps[i];
- DowMSteps(begin, view);
- begin += 20;
-
- }
-
- PlcConnect.Instance.Write($"DB2104.55.6", true);
- }
- public static void DownM6Recipe(List recipeSteps)
- {
- int begin = 3138;
- DownM1CleanRecipe(begin);
- for (int i = 0; i < recipeSteps.Count(); i++)
- {
- var view = recipeSteps[i];
- DowMSteps(begin, view);
- begin += 20;
-
- }
- PlcConnect.Instance.Write($"DB2104.55.7", true);
- }
- public static void DownM7Recipe(List recipeSteps)
- {
- int begin = 3338;
- DownM1CleanRecipe(begin);
- for (int i = 0; i < recipeSteps.Count(); i++)
- {
- var view = recipeSteps[i];
- DowMSteps(begin, view);
- begin += 20;
-
- }
- PlcConnect.Instance.Write($"DB2104.56.0", true);
- }
- public static void DownM8Recipe(List recipeSteps)
- {
- int begin = 3538;
- DownM1CleanRecipe(begin);
- for (int i = 0; i < recipeSteps.Count(); i++)
- {
- var view = recipeSteps[i];
- DowMSteps(begin, view);
- begin += 20;
-
- }
-
- PlcConnect.Instance.Write($"DB2104.56.1", true);
-
- }
+
+ public static void DownM4Recipe(List recipeSteps)
+ {
+ int begin = 2738;
+ DownM1CleanRecipe(begin);
+ for (int i = 0; i < recipeSteps.Count(); i++)
+ {
+ var view = recipeSteps[i];
+ DowMSteps(begin, view);
+ begin += 20;
+
+ }
+
+ PlcConnect.Instance.Write($"DB2104.55.5", true);
+ }
+ public static void DownM5Recipe(List recipeSteps)
+ {
+ int begin = 2938;
+ DownM1CleanRecipe(begin);
+ for (int i = 0; i < recipeSteps.Count(); i++)
+ {
+ var view = recipeSteps[i];
+ DowMSteps(begin, view);
+ begin += 20;
+
+ }
+
+ PlcConnect.Instance.Write($"DB2104.55.6", true);
+ }
+ public static void DownM6Recipe(List recipeSteps)
+ {
+ int begin = 3138;
+ DownM1CleanRecipe(begin);
+ for (int i = 0; i < recipeSteps.Count(); i++)
+ {
+ var view = recipeSteps[i];
+ DowMSteps(begin, view);
+ begin += 20;
+
+ }
+ PlcConnect.Instance.Write($"DB2104.55.7", true);
+ }
+ public static void DownM7Recipe(List recipeSteps)
+ {
+ int begin = 3338;
+ DownM1CleanRecipe(begin);
+ for (int i = 0; i < recipeSteps.Count(); i++)
+ {
+ var view = recipeSteps[i];
+ DowMSteps(begin, view);
+ begin += 20;
+
+ }
+ PlcConnect.Instance.Write($"DB2104.56.0", true);
+ }
+ public static void DownM8Recipe(List recipeSteps)
+ {
+ int begin = 3538;
+ DownM1CleanRecipe(begin);
+ for (int i = 0; i < recipeSteps.Count(); i++)
+ {
+ var view = recipeSteps[i];
+ DowMSteps(begin, view);
+ begin += 20;
+
+ }
+
+ PlcConnect.Instance.Write($"DB2104.56.1", true);
+
+ }
private static DryerView GetDryerView(int start)
{
@@ -583,14 +583,14 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
var data = operateResult.Content;
-
+
for (int i = 0; i < 10; i++)
{
var bytes = data.Skip(i * 20).Take(20).ToArray();
MixStep step = new MixStep()
{
-
+
MixCode = byteTransform.TransInt16(bytes, 0),
MixTime = byteTransform.TransInt16(bytes, 2),
MixTemp = byteTransform.TransSingle(bytes, 4),
@@ -609,62 +609,62 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
{
List recipePlcViews = GetClean(12);
List recipeSteps = GetCleanStep(10);
-
+
for (int i = 0; i < recipePlcViews.Count(); i++)
{
var view = recipePlcViews[i];
Dowd(begin, view);
begin += 10;
}
-
+
//begin += 120;
for (int i = 0; i < recipeSteps.Count(); i++)
{
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
}
private static void DownCleanG1Recipe(int begin)
{
List recipePlcViews = GetClean(2);
List recipeSteps = GetCleanStep(10);
-
+
for (int i = 0; i < recipePlcViews.Count(); i++)
{
var view = recipePlcViews[i];
Dowd(begin, view);
begin += 10;
}
-
+
//begin += 20;
for (int i = 0; i < recipeSteps.Count(); i++)
{
var view = recipeSteps[i];
DowSteps(begin, view);
begin += 12;
-
+
}
-
+
}
private static void DownM1CleanRecipe(int begin)
{
-
+
List recipeSteps = GetCleanMixStep(10);
-
+
for (int i = 0; i < recipeSteps.Count(); i++)
{
var view = recipeSteps[i];
DowMSteps(begin, view);
begin += 20;
-
+
}
-
+
}
@@ -697,7 +697,7 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
private static void DowMSteps(int start, MixStep step)
{
int mixCode = start;
- var s= PlcConnect.Instance.Write($"DB2104.{mixCode}.0", step.MixCode);
+ var s = PlcConnect.Instance.Write($"DB2104.{mixCode}.0", step.MixCode);
int mixTime = start + 2;
PlcConnect.Instance.Write($"DB2104.{mixTime}.0", step.MixTime);
@@ -773,6 +773,6 @@ namespace Mesnac.Action.ChemicalWeighing.LjPlanning
}
-
+
}
}
\ No newline at end of file
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/MainDetailControl/MainDetailControlAction.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/MainDetailControl/MainDetailControlAction.cs
index c1781b6..abb4c62 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/MainDetailControl/MainDetailControlAction.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/MainDetailControl/MainDetailControlAction.cs
@@ -1666,18 +1666,18 @@ namespace Mesnac.Action.ChemicalWeighing.MainDetailControl
ControlsHelper.SetJzf(JzfE.AS8GET02, PlcReadTemp.AS8GET02_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1ADF01, PlcReadTemp.PM1ADF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1BDF01, PlcReadTemp.PM1BDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1CDF01, PlcReadTemp.PM1CDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1DDF01, PlcReadTemp.PM1DDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1EDF01, PlcReadTemp.PM1EDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1FDF01, PlcReadTemp.PM1FDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1GDF01, PlcReadTemp.PM1GDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1HDF01, PlcReadTemp.PM1HDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1IDF01, PlcReadTemp.PM1IDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1JDF01, PlcReadTemp.PM1JDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1KDF01, PlcReadTemp.PM1KDF01_Set);
- ControlsHelper.SetControlCabinet(ControlCabinetE.PM1LDF01, PlcReadTemp.PM1LDF01_Set);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1ADF01, PlcReadTemp.PM1ADF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1BDF01, PlcReadTemp.PM1BDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1CDF01, PlcReadTemp.PM1CDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1DDF01, PlcReadTemp.PM1DDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1EDF01, PlcReadTemp.PM1EDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1FDF01, PlcReadTemp.PM1FDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1GDF01, PlcReadTemp.PM1GDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1HDF01, PlcReadTemp.PM1HDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1IDF01, PlcReadTemp.PM1IDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1JDF01, PlcReadTemp.PM1JDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1KDF01, PlcReadTemp.PM1KDF01_Set, false);
+ ControlsHelper.SetControlCabinet(ControlCabinetE.PM1LDF01, PlcReadTemp.PM1LDF01_Set, false);
ControlsHelper.SetMCLabel(LabelE.DryMode4, DB2107.Dryer[3].Mode, 1);
ControlsHelper.SetMCLabel(LabelE.DryStatus4, DB2107.Dryer[3].Status, 2);
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs
index ae0eb4f..936ccdd 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/ControlsImprot.cs
@@ -244,9 +244,13 @@ namespace Mesnac.Action.ChemicalWeighing.Util
///
///
///
- public static void SetControlCabinet(ControlCabinet obj, bool set)
+ public static void SetControlCabinet(ControlCabinet obj, bool set, bool alarm)
{
- if (set == true)
+ if (alarm == true)
+ {
+ obj.Status = ControlCabinet.Statuses.Alarm;
+ }
+ else if (set == true)
{
obj.Status = ControlCabinet.Statuses.TurnOn;
}
diff --git a/Controls/Mesnac.Controls.ChemicalWeighing/ControlCabinet.cs b/Controls/Mesnac.Controls.ChemicalWeighing/ControlCabinet.cs
index 893a881..3326e11 100644
--- a/Controls/Mesnac.Controls.ChemicalWeighing/ControlCabinet.cs
+++ b/Controls/Mesnac.Controls.ChemicalWeighing/ControlCabinet.cs
@@ -17,7 +17,8 @@ namespace Mesnac.Controls.ChemicalWeighing
public enum Statuses
{
TurnOff = 0,
- TurnOn = 1
+ TurnOn = 1,
+ Alarm = 2,
}
private bool bNewPic = false;
private string _statusName;
@@ -39,9 +40,10 @@ namespace Mesnac.Controls.ChemicalWeighing
{
base.Init();
_imageStream = null;
- sImages = new string[2];
+ sImages = new string[3];
sImages[0] = "Mesnac.Controls.ChemicalWeighing.Resources.controlCabinet.png";//zsTurnOff
sImages[1] = "Mesnac.Controls.ChemicalWeighing.Resources.controlCabinet1.png";//zsTurnOn
+ sImages[2] = "Mesnac.Controls.ChemicalWeighing.Resources.controlCabinet0.png";//zsAlarm
_status = Statuses.TurnOff;
}
@@ -90,7 +92,7 @@ namespace Mesnac.Controls.ChemicalWeighing
{
_status = (Statuses)0;
}
- else if ((int)value > 1)
+ else if ((int)value > 2)
{
_status = (Statuses)1;
}
diff --git a/DataBlockHelper/DBHelpers/DB91Helper.cs b/DataBlockHelper/DBHelpers/DB91Helper.cs
index 9c076a6..b24656d 100644
--- a/DataBlockHelper/DBHelpers/DB91Helper.cs
+++ b/DataBlockHelper/DBHelpers/DB91Helper.cs
@@ -21,17 +21,18 @@ namespace DataBlockHelper.DBHelpers
public ForMotorEntity DM1BSIG01 => new ForMotorEntity(4, bytes);
public ForMotorEntity DM1CSIG01 => new ForMotorEntity(6, bytes);
public ForMotorEntity DM1DSIG01 => new ForMotorEntity(8, bytes);
- public ForMotorEntity DM1GDS01 => new ForMotorEntity(10, bytes);
- public ForMotorEntity DM1GDS02 => new ForMotorEntity(12, bytes);
+ public ForMotorEntity DM1ESIG01 => new ForMotorEntity(10, bytes);
+ public ForMotorEntity DM1GDS01 => new ForMotorEntity(12, bytes);
+ public ForMotorEntity DM1GDS02 => new ForMotorEntity(14, bytes);
- public ForMotorEntity DM1GDS03 => new ForMotorEntity(14, bytes);
+ public ForMotorEntity DM1GDS03 => new ForMotorEntity(16, bytes);
- public ForMotorEntity DM1GDS04 => new ForMotorEntity(16, bytes);
+ public ForMotorEntity DM1GDS04 => new ForMotorEntity(18, bytes);
- public ForMotorEntity DM1GDS05 => new ForMotorEntity(18, bytes);
+ public ForMotorEntity DM1GDS05 => new ForMotorEntity(20, bytes);
- public ForMotorEntity DM1GDS06 => new ForMotorEntity(20, bytes);
+ public ForMotorEntity DM1GDS06 => new ForMotorEntity(22, bytes);
public ForMotorEntity DM1GDS07 => new ForMotorEntity(24, bytes);
diff --git a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml
index 0e1f4d0..2645296 100644
--- a/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml
+++ b/Main/MCEdit/Data/MCProject/nodeForm/LjDeliver.xml
@@ -1,6 +1,111 @@
- 324, 656
+ 443, 656
DM3DSM01
13, 13
- 324, 375
+ 443, 375
DM2DSM01
13, 13
- 324, 91
+ 443, 91
DM1DSM01
13, 13
@@ -102,7 +207,7 @@
True
0
White
- 399, 722
+ 518, 722
PR3DBT03
11, 12
@@ -122,7 +227,7 @@
True
0
White
- 397, 834
+ 516, 834
PR3DBT04
11, 12
@@ -142,7 +247,7 @@
True
0
White
- 297, 722
+ 416, 722
PR3DBT02
11, 12
@@ -162,7 +267,7 @@
True
0
White
- 399, 156
+ 518, 156
PR1DBT03
11, 12
@@ -182,7 +287,7 @@
True
0
White
- 397, 268
+ 516, 268
PR1DBT04
11, 12
@@ -202,7 +307,7 @@
True
0
White
- 297, 156
+ 416, 156
PR1DBT02
11, 12
@@ -222,7 +327,7 @@
True
0
White
- 399, 441
+ 518, 441
PR2DBT03
11, 12
@@ -242,7 +347,7 @@
True
0
White
- 397, 553
+ 516, 553
PR2DBT04
11, 12
@@ -262,49 +367,49 @@
True
0
White
- 297, 441
+ 416, 441
PR2DBT02
11, 12
TurnOff
- 337, 686
+ 456, 686
SideBlowing3
13, 11
TurnOff
- 330, 676
+ 449, 676
Excitation3
13, 11
TurnOff
- 337, 405
+ 456, 405
SideBlowing2
13, 11
TurnOff
- 330, 395
+ 449, 395
Excitation2
13, 11
TurnOff
- 337, 121
+ 456, 121
SideBlowing1
13, 11
TurnOff
- 330, 111
+ 449, 111
Excitation1
13, 11
@@ -313,7 +418,7 @@
- 1082, 68
+ 1201, 68
DV1PCP19
22, 12
@@ -322,7 +427,7 @@
- 1023, 69
+ 1142, 69
DV1PCP06
22, 12
@@ -331,46 +436,46 @@
- 1292, 69
+ 1411, 69
DV1PCP20
22, 12
- 326, 858
+ 445, 858
AS3DBT07
14, 12
- 329, 578
+ 448, 578
AS2DBT07
14, 12
- 328, 293
+ 447, 293
AS1DBT07
14, 12
- 352, 656
+ 471, 656
HighLevel3
13, 13
- 352, 375
+ 471, 375
HighLevel2
13, 13
- 352, 91
+ 471, 91
HighLevel1
13, 13
@@ -388,7 +493,7 @@
True
MiddleCenter
White
- 598, 107
+ 717, 107
SpecialLabelBlue503
3, 16
@@ -397,7 +502,7 @@
- 501, 236
+ 620, 236
DV1PCP10
13, 22
@@ -406,7 +511,7 @@
- 501, 263
+ 620, 263
DV1PCP09
13, 22
@@ -415,7 +520,7 @@
- 467, 208
+ 586, 208
DV1PCP02
13, 22
@@ -424,7 +529,7 @@
- 467, 237
+ 586, 237
DV1PCP01
13, 22
@@ -442,7 +547,7 @@
True
MiddleCenter
White
- 1572, 181
+ 1691, 181
SpecialLabelBlue504
3, 43
@@ -460,7 +565,7 @@
True
MiddleCenter
White
- 1530, 181
+ 1649, 181
SpecialLabelBlue505
43, 3
@@ -478,14 +583,14 @@
True
MiddleCenter
White
- 1483, 19
+ 1602, 19
SpecialLabelBlue506
3, 136
- 23, 874
+ 29, 873
AlarmMoveText
- 1577, 30
+ 1750, 30
@@ -503,7 +608,7 @@
True
0
White
- 200, 807
+ 319, 807
PR3DBT01
11, 12
@@ -523,7 +628,7 @@
True
0
White
- 200, 526
+ 319, 526
PR2DBT01
11, 12
@@ -543,7 +648,7 @@
True
0
White
- 200, 244
+ 319, 244
PR1DBT01
11, 12
@@ -563,7 +668,7 @@
True
0
White
- 233, 851
+ 352, 851
SPV3DBT02
11, 12
@@ -583,7 +688,7 @@
True
0
White
- 233, 828
+ 352, 828
SPV3DBT01
11, 12
@@ -603,7 +708,7 @@
True
0
White
- 233, 569
+ 352, 569
SPV2DBT02
11, 12
@@ -623,7 +728,7 @@
True
0
White
- 233, 547
+ 352, 547
SPV2DBT01
11, 12
@@ -643,7 +748,7 @@
True
0
White
- 233, 285
+ 352, 285
SPV1DBT02
11, 12
@@ -663,7 +768,7 @@
True
0
White
- 233, 262
+ 352, 262
SPV1DBT01
11, 12
@@ -681,7 +786,7 @@
True
MiddleCenter
White
- 1037, 78
+ 1156, 78
SpecialLabelBlue508
3, 77
@@ -699,7 +804,7 @@
True
MiddleCenter
White
- 1097, 78
+ 1216, 78
SpecialLabelBlue507
3, 77
@@ -708,7 +813,7 @@
- 557, 94
+ 676, 94
DV1PCP04
22, 12
@@ -726,7 +831,7 @@
True
MiddleCenter
White
- 572, 72
+ 691, 72
SpecialLabelBlue511
798, 3
@@ -744,7 +849,7 @@
True
MiddleCenter
White
- 572, 73
+ 691, 73
SpecialLabelBlue512
3, 30
@@ -753,7 +858,7 @@
- 467, 174
+ 586, 174
DV1PCP16
13, 22
@@ -771,7 +876,7 @@
True
MiddleCenter
White
- 468, 178
+ 587, 178
SpecialLabelBlue513
106, 3
@@ -779,7 +884,7 @@
zsTurnOff
- 1651, 108
+ 1833, 105
Fan17
10, 10
@@ -797,7 +902,7 @@
True
MiddleCenter
White
- 1640, 121
+ 1822, 118
SpecialLabelBlue698
30, 2
@@ -815,7 +920,7 @@
True
MiddleCenter
White
- 1667, 91
+ 1849, 88
SpecialLabelBlue697
2, 24
@@ -823,7 +928,7 @@
zsTurnOff
- 1627, 106
+ 1809, 103
Fan18
10, 10
@@ -841,7 +946,7 @@
True
MiddleCenter
White
- 1646, 53
+ 1828, 50
SpecialLabelBlue696
15, 2
@@ -859,7 +964,7 @@
True
MiddleCenter
White
- 1646, 53
+ 1828, 50
SpecialLabelBlue695
2, 62
@@ -877,7 +982,7 @@
True
MiddleCenter
White
- 1619, 113
+ 1801, 110
SpecialLabelBlue694
29, 2
@@ -895,7 +1000,7 @@
True
MiddleCenter
White
- 1617, 45
+ 1799, 42
SpecialLabelBlue693
65, 2
@@ -913,7 +1018,7 @@
True
MiddleCenter
White
- 1616, 45
+ 1798, 42
SpecialLabelBlue692
2, 62
@@ -931,24 +1036,24 @@
True
MiddleCenter
White
- 1604, 59
+ 1786, 56
SpecialLabelBlue691
55, 2
- 1659, 53
+ 1841, 50
SheBei1
25, 40
- 1578, 56
+ 1760, 53
MoFenJi1
44, 72
142, 196, 216
20
- 1498, 85
+ 1680, 82
HslConveyer2147483646
84, 30
@@ -957,7 +1062,7 @@
- 1413, 15
+ 1532, 15
DV1PCP18
22, 12
@@ -966,14 +1071,14 @@
- 1200, 15
+ 1319, 15
DV1PCP17
22, 12
- 563, 852
+ 682, 852
AS1PCP03
14, 12
@@ -991,13 +1096,13 @@
True
MiddleCenter
128, 255, 128
- 1593, 140
+ 1712, 140
SpecialLabelBlue690
3, 83
ylNormal
- 1564, 453
+ 1683, 453
DM1OSF01
36, 10
@@ -1017,7 +1122,7 @@
True
0
White
- 1556, 286
+ 1675, 286
HR1OSI01
11, 12
@@ -1037,26 +1142,26 @@
True
0
White
- 1556, 239
+ 1675, 239
PR1OSI01
11, 12
- 1571, 399
+ 1690, 399
LSiloO
10, 10
- 1571, 262
+ 1690, 262
HSiloO
10, 10
- 1590, 224
+ 1709, 224
AS1OSI01
14, 12
@@ -1069,7 +1174,7 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1551, 221
+ 1670, 221
Bottle15
46, 237
@@ -1087,7 +1192,7 @@
True
MiddleCenter
128, 255, 128
- 692, 140
+ 811, 140
SpecialLabelBlue689
3, 14
@@ -1105,7 +1210,7 @@
True
MiddleCenter
128, 255, 128
- 751, 140
+ 870, 140
SpecialLabelBlue688
3, 14
@@ -1123,7 +1228,7 @@
True
MiddleCenter
128, 255, 128
- 809, 140
+ 928, 140
SpecialLabelBlue687
3, 14
@@ -1141,7 +1246,7 @@
True
MiddleCenter
128, 255, 128
- 904, 139
+ 1023, 139
SpecialLabelBlue686
3, 14
@@ -1159,7 +1264,7 @@
True
MiddleCenter
128, 255, 128
- 963, 139
+ 1082, 139
SpecialLabelBlue685
3, 14
@@ -1177,7 +1282,7 @@
True
MiddleCenter
128, 255, 128
- 1057, 139
+ 1176, 139
SpecialLabelBlue684
3, 14
@@ -1195,7 +1300,7 @@
True
MiddleCenter
128, 255, 128
- 1116, 139
+ 1235, 139
SpecialLabelBlue683
3, 14
@@ -1213,7 +1318,7 @@
True
MiddleCenter
128, 255, 128
- 1175, 138
+ 1294, 138
SpecialLabelBlue682
3, 14
@@ -1231,7 +1336,7 @@
True
MiddleCenter
128, 255, 128
- 1234, 139
+ 1353, 139
SpecialLabelBlue681
3, 14
@@ -1249,7 +1354,7 @@
True
MiddleCenter
128, 255, 128
- 1327, 140
+ 1446, 140
SpecialLabelBlue680
3, 14
@@ -1267,7 +1372,7 @@
True
MiddleCenter
128, 255, 128
- 1386, 140
+ 1505, 140
SpecialLabelBlue679
3, 14
@@ -1285,7 +1390,7 @@
True
MiddleCenter
128, 255, 128
- 1445, 140
+ 1564, 140
SpecialLabelBlue678
3, 14
@@ -1303,7 +1408,7 @@
True
MiddleCenter
128, 255, 128
- 1505, 140
+ 1624, 140
SpecialLabelBlue677
3, 14
@@ -1321,7 +1426,7 @@
True
MiddleCenter
128, 255, 128
- 633, 140
+ 752, 140
SpecialLabelBlue676
3, 14
@@ -1339,7 +1444,7 @@
True
MiddleCenter
128, 255, 128
- 581, 137
+ 700, 137
SpecialLabelBlue675
1015, 3
@@ -1357,7 +1462,7 @@
True
MiddleCenter
White
- 1307, 76
+ 1426, 76
SpecialLabelBlue674
3, 80
@@ -1375,7 +1480,7 @@
True
MiddleCenter
White
- 1367, 73
+ 1486, 73
SpecialLabelBlue673
3, 83
@@ -1384,7 +1489,7 @@
- 1141, 16
+ 1260, 16
DV1PCP05
22, 12
@@ -1402,7 +1507,7 @@
True
MiddleCenter
White
- 1425, 19
+ 1544, 19
SpecialLabelBlue669
3, 138
@@ -1420,7 +1525,7 @@
True
MiddleCenter
White
- 1155, 22
+ 1274, 22
SpecialLabelBlue667
3, 132
@@ -1438,31 +1543,31 @@
True
MiddleCenter
White
- 1215, 22
+ 1334, 22
SpecialLabelBlue666
3, 132
ylNormal
- 1476, 459
+ 1595, 459
DM1NSF01
43, 10
ylNormal
- 1416, 457
+ 1535, 457
DM1MSF01
43, 10
ylNormal
- 1358, 457
+ 1477, 457
DM1LSF01
43, 10
ylNormal
- 1299, 457
+ 1418, 457
DM1KSF01
43, 10
@@ -1482,7 +1587,7 @@
True
0
White
- 1469, 216
+ 1588, 216
HR1NSI01
11, 12
@@ -1502,62 +1607,62 @@
True
0
White
- 1469, 169
+ 1588, 169
PR1NSI01
11, 12
- 1302, 402
+ 1421, 402
LSiloK
13, 13
- 1362, 402
+ 1481, 402
LSiloL
13, 13
- 1422, 402
+ 1541, 402
LSiloM
13, 13
- 1480, 401
+ 1599, 401
LSiloN
13, 13
- 1480, 193
+ 1599, 193
HSiloN
13, 13
- 1422, 193
+ 1541, 193
HSiloM
13, 13
- 1362, 193
+ 1481, 193
HSiloL
13, 13
- 1302, 192
+ 1421, 192
HSiloK
13, 13
- 1499, 155
+ 1618, 155
AS1NSI01
14, 12
@@ -1570,14 +1675,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1460, 152
+ 1579, 152
Bottle14
53, 308
- 1440, 155
+ 1559, 155
AS1MSI01
14, 12
@@ -1597,7 +1702,7 @@
True
0
White
- 1410, 216
+ 1529, 216
HR1MSI01
11, 12
@@ -1617,7 +1722,7 @@
True
0
White
- 1410, 169
+ 1529, 169
PR1MSI01
11, 12
@@ -1630,14 +1735,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1401, 152
+ 1520, 152
Bottle13
53, 308
- 1381, 155
+ 1500, 155
AS1LSI01
14, 12
@@ -1657,7 +1762,7 @@
True
0
White
- 1351, 216
+ 1470, 216
HR1LSI01
11, 12
@@ -1677,7 +1782,7 @@
True
0
White
- 1351, 169
+ 1470, 169
PR1LSI01
11, 12
@@ -1690,14 +1795,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1342, 152
+ 1461, 152
Bottle12
53, 308
- 1322, 155
+ 1441, 155
AS1KSI01
14, 12
@@ -1717,7 +1822,7 @@
True
0
White
- 1292, 216
+ 1411, 216
HR1KSI01
11, 12
@@ -1737,7 +1842,7 @@
True
0
White
- 1292, 172
+ 1411, 172
PR1KSI01
11, 12
@@ -1750,7 +1855,7 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1283, 152
+ 1402, 152
Bottle11
53, 308
@@ -1759,7 +1864,7 @@
- 873, 44
+ 992, 44
DV1PCP15
22, 12
@@ -1777,7 +1882,7 @@
True
MiddleCenter
White
- 887, 54
+ 1006, 54
SpecialLabelBlue664
3, 98
@@ -1795,7 +1900,7 @@
True
MiddleCenter
White
- 945, 47
+ 1064, 47
SpecialLabelBlue663
3, 104
@@ -1804,7 +1909,7 @@
- 585, 98
+ 704, 98
DV1PCP11
22, 12
@@ -1813,7 +1918,7 @@
- 603, 120
+ 722, 120
DV1PCP12
22, 12
@@ -1831,7 +1936,7 @@
True
MiddleCenter
White
- 598, 123
+ 717, 123
SpecialLabelBlue662
78, 3
@@ -1840,7 +1945,7 @@
- 718, 15
+ 837, 15
DV1PCP03
22, 12
@@ -1858,7 +1963,7 @@
True
MiddleCenter
White
- 616, 123
+ 735, 123
SpecialLabelBlue661
3, 28
@@ -1876,7 +1981,7 @@
True
MiddleCenter
White
- 673, 123
+ 792, 123
SpecialLabelBlue660
3, 32
@@ -1894,7 +1999,7 @@
True
MiddleCenter
White
- 732, 21
+ 851, 21
SpecialLabelBlue659
3, 132
@@ -1912,7 +2017,7 @@
True
MiddleCenter
White
- 791, 101
+ 910, 101
SpecialLabelBlue658
3, 51
@@ -1930,7 +2035,7 @@
True
MiddleCenter
White
- 510, 101
+ 629, 101
SpecialLabelBlue657
284, 3
@@ -1948,7 +2053,7 @@
True
MiddleCenter
White
- 550, 47
+ 669, 47
SpecialLabelBlue654
397, 3
@@ -1966,21 +2071,21 @@
True
MiddleCenter
White
- 468, 18
+ 587, 18
SpecialLabelBlue652
1018, 3
- 522, 571
+ 641, 571
AS1PCP02
14, 12
- 481, 286
+ 600, 286
AS1PCP01
14, 12
@@ -2000,7 +2105,7 @@
True
玉米粉等
Yellow
- 200, 590
+ 319, 590
MCLabel274
53, 12
@@ -2020,7 +2125,7 @@
True
小料等
Yellow
- 205, 305
+ 324, 305
MCLabel273
41, 12
@@ -2038,7 +2143,7 @@
True
MiddleCenter
White
- 533, 380
+ 652, 380
SpecialLabelBlue644
3, 60
@@ -2056,7 +2161,7 @@
True
MiddleCenter
White
- 533, 437
+ 652, 437
SpecialLabelBlue645
10, 3
@@ -2074,7 +2179,7 @@
True
MiddleCenter
White
- 520, 380
+ 639, 380
SpecialLabelBlue646
14, 3
@@ -2092,7 +2197,7 @@
True
MiddleCenter
White
- 520, 410
+ 639, 410
SpecialLabelBlue647
22, 3
@@ -2101,7 +2206,7 @@
- 541, 407
+ 660, 407
DV1PCP14
13, 22
@@ -2110,7 +2215,7 @@
- 541, 434
+ 660, 434
DV1PCP13
13, 22
@@ -2119,7 +2224,7 @@
- 507, 378
+ 626, 378
DV1PCP08
13, 22
@@ -2128,7 +2233,7 @@
- 507, 407
+ 626, 407
DV1PCP07
13, 22
@@ -2146,7 +2251,7 @@
True
MiddleCenter
White
- 550, 47
+ 669, 47
SpecialLabelBlue643
3, 799
@@ -2164,7 +2269,7 @@
True
MiddleCenter
White
- 492, 211
+ 611, 211
SpecialLabelBlue636
3, 60
@@ -2182,7 +2287,7 @@
True
MiddleCenter
White
- 492, 268
+ 611, 268
SpecialLabelBlue635
10, 3
@@ -2200,7 +2305,7 @@
True
MiddleCenter
White
- 479, 211
+ 598, 211
SpecialLabelBlue633
14, 3
@@ -2218,7 +2323,7 @@
True
MiddleCenter
White
- 479, 241
+ 598, 241
SpecialLabelBlue632
22, 3
@@ -2236,7 +2341,7 @@
True
MiddleCenter
White
- 509, 101
+ 628, 101
SpecialLabelBlue630
3, 467
@@ -2254,7 +2359,7 @@
True
MiddleCenter
White
- 468, 21
+ 587, 21
SpecialLabelBlue628
3, 262
@@ -2262,7 +2367,7 @@
zsTurnOff
- 1699, 14
+ 1881, 11
Fan19
10, 10
@@ -2280,7 +2385,7 @@
True
MiddleCenter
Aqua
- 1693, 61
+ 1875, 58
SpecialLabelBlue627
1, 16
@@ -2298,7 +2403,7 @@
True
MiddleCenter
Aqua
- 138, 72
+ 257, 72
SpecialLabelBlue626
1, 754
@@ -2316,7 +2421,7 @@
True
MiddleCenter
Aqua
- 122, 72
+ 241, 72
SpecialLabelBlue625
17, 1
@@ -2334,7 +2439,7 @@
True
MiddleCenter
Aqua
- 229, 583
+ 348, 583
SpecialLabelBlue623
299, 1
@@ -2352,7 +2457,7 @@
True
MiddleCenter
Aqua
- 229, 545
+ 348, 545
SpecialLabelBlue624
1, 39
@@ -2370,7 +2475,7 @@
True
MiddleCenter
Aqua
- 229, 864
+ 348, 864
SpecialLabelBlue599
340, 1
@@ -2388,7 +2493,7 @@
True
MiddleCenter
Aqua
- 229, 826
+ 348, 826
SpecialLabelBlue600
1, 39
@@ -2406,7 +2511,7 @@
True
MiddleCenter
Aqua
- 138, 825
+ 257, 825
SpecialLabelBlue601
134, 1
@@ -2424,21 +2529,21 @@
True
MiddleCenter
White
- 327, 846
+ 446, 846
SpecialLabelBlue602
226, 3
- 386, 820
+ 505, 820
BU3DBT07
14, 12
- 324, 820
+ 443, 820
BU3DBT06
14, 12
@@ -2456,7 +2561,7 @@
True
MiddleCenter
White
- 388, 818
+ 507, 818
SpecialLabelBlue603
3, 29
@@ -2474,14 +2579,14 @@
True
MiddleCenter
White
- 327, 819
+ 446, 819
SpecialLabelBlue604
3, 27
- 297, 842
+ 416, 842
AS3DBT06
14, 12
@@ -2499,7 +2604,7 @@
True
MiddleCenter
Aqua
- 402, 739
+ 521, 739
SpecialLabelBlue605
26, 1
@@ -2517,7 +2622,7 @@
True
MiddleCenter
Aqua
- 291, 740
+ 410, 740
SpecialLabelBlue606
24, 1
@@ -2535,35 +2640,35 @@
True
MiddleCenter
Aqua
- 251, 778
+ 370, 778
SpecialLabelBlue607
177, 1
- 387, 711
+ 506, 711
BU3DBT04
14, 12
- 320, 711
+ 439, 711
BU3DBT03
14, 12
- 366, 716
+ 485, 716
BU3DBT02
14, 12
- 339, 717
+ 458, 717
BU3DBT01
14, 12
@@ -2581,7 +2686,7 @@
True
MiddleCenter
White
- 391, 705
+ 510, 705
SpecialLabelBlue608
2, 41
@@ -2599,7 +2704,7 @@
True
MiddleCenter
White
- 324, 705
+ 443, 705
SpecialLabelBlue609
2, 41
@@ -2617,7 +2722,7 @@
True
MiddleCenter
White
- 324, 705
+ 443, 705
SpecialLabelBlue610
69, 2
@@ -2635,7 +2740,7 @@
True
MiddleCenter
White
- 343, 712
+ 462, 712
SpecialLabelBlue611
30, 3
@@ -2653,7 +2758,7 @@
True
MiddleCenter
White
- 370, 714
+ 489, 714
SpecialLabelBlue612
3, 27
@@ -2671,7 +2776,7 @@
True
MiddleCenter
White
- 343, 714
+ 462, 714
SpecialLabelBlue613
3, 27
@@ -2689,59 +2794,59 @@
True
MiddleCenter
White
- 357, 700
+ 476, 700
SpecialLabelBlue614
3, 12
- 381, 746
+ 500, 746
Atank6
13, 13
- 322, 747
+ 441, 747
Atank5
13, 13
- 343, 850
+ 462, 850
Xie19
32, 12
- 407, 795
+ 526, 795
AS3DBT05
14, 12
- 297, 795
+ 416, 795
AS3DBT04
14, 12
- 423, 748
+ 542, 748
AS3DBT02
14, 12
- 287, 748
+ 406, 748
AS3DBT01
14, 12
- 267, 795
+ 386, 795
AS3DBT03
14, 12
@@ -2759,17 +2864,17 @@
True
MiddleCenter
White
- 357, 631
+ 476, 631
SpecialLabelBlue615
3, 24
- 337, 653
+ 456, 653
Dou30
43, 49
- 149, 575
+ 268, 575
HslTruck21
130, 72
@@ -2787,7 +2892,7 @@
True
MiddleCenter
Aqua
- 290, 847
+ 409, 847
SpecialLabelBlue616
38, 1
@@ -2805,7 +2910,7 @@
True
MiddleCenter
Aqua
- 396, 801
+ 515, 801
SpecialLabelBlue617
31, 1
@@ -2823,7 +2928,7 @@
True
MiddleCenter
Aqua
- 427, 740
+ 546, 740
SpecialLabelBlue618
1, 63
@@ -2841,7 +2946,7 @@
True
MiddleCenter
Aqua
- 291, 801
+ 410, 801
SpecialLabelBlue619
32, 1
@@ -2859,17 +2964,17 @@
True
MiddleCenter
Aqua
- 290, 740
+ 409, 740
SpecialLabelBlue620
1, 107
- 360, 736
+ 479, 736
LouDou47
56, 83
- 300, 736
+ 419, 736
LouDou48
56, 83
@@ -2887,7 +2992,7 @@
True
MiddleCenter
Aqua
- 250, 778
+ 369, 778
SpecialLabelBlue621
1, 48
@@ -2905,12 +3010,12 @@
True
MiddleCenter
Aqua
- 271, 778
+ 390, 778
SpecialLabelBlue622
1, 48
- 271, 604
+ 390, 604
Trucks21
113, 37
@@ -2928,7 +3033,7 @@
True
MiddleCenter
Aqua
- 229, 298
+ 348, 298
SpecialLabelBlue595
257, 1
@@ -2946,7 +3051,7 @@
True
MiddleCenter
Aqua
- 229, 260
+ 348, 260
SpecialLabelBlue596
1, 39
@@ -2964,7 +3069,7 @@
True
MiddleCenter
Aqua
- 139, 544
+ 258, 544
SpecialLabelBlue549
133, 1
@@ -2982,21 +3087,21 @@
True
MiddleCenter
White
- 327, 565
+ 446, 565
SpecialLabelBlue550
182, 3
- 386, 539
+ 505, 539
BU2DBT07
14, 12
- 324, 539
+ 443, 539
BU2DBT06
14, 12
@@ -3014,7 +3119,7 @@
True
MiddleCenter
White
- 388, 537
+ 507, 537
SpecialLabelBlue551
3, 29
@@ -3032,14 +3137,14 @@
True
MiddleCenter
White
- 327, 538
+ 446, 538
SpecialLabelBlue552
3, 27
- 297, 561
+ 416, 561
AS2DBT06
14, 12
@@ -3057,7 +3162,7 @@
True
MiddleCenter
Aqua
- 402, 458
+ 521, 458
SpecialLabelBlue553
26, 1
@@ -3075,7 +3180,7 @@
True
MiddleCenter
Aqua
- 291, 459
+ 410, 459
SpecialLabelBlue554
24, 1
@@ -3093,35 +3198,35 @@
True
MiddleCenter
Aqua
- 251, 497
+ 370, 497
SpecialLabelBlue555
177, 1
- 387, 430
+ 506, 430
BU2DBT04
14, 12
- 320, 430
+ 439, 430
BU2DBT03
14, 12
- 366, 435
+ 485, 435
BU2DBT02
14, 12
- 339, 436
+ 458, 436
BU2DBT01
14, 12
@@ -3139,7 +3244,7 @@
True
MiddleCenter
White
- 391, 424
+ 510, 424
SpecialLabelBlue556
2, 41
@@ -3157,7 +3262,7 @@
True
MiddleCenter
White
- 324, 424
+ 443, 424
SpecialLabelBlue557
2, 41
@@ -3175,7 +3280,7 @@
True
MiddleCenter
White
- 324, 424
+ 443, 424
SpecialLabelBlue558
69, 2
@@ -3193,7 +3298,7 @@
True
MiddleCenter
White
- 343, 431
+ 462, 431
SpecialLabelBlue559
30, 3
@@ -3211,7 +3316,7 @@
True
MiddleCenter
White
- 370, 433
+ 489, 433
SpecialLabelBlue560
3, 27
@@ -3229,7 +3334,7 @@
True
MiddleCenter
White
- 343, 433
+ 462, 433
SpecialLabelBlue561
3, 27
@@ -3247,59 +3352,59 @@
True
MiddleCenter
White
- 357, 419
+ 476, 419
SpecialLabelBlue562
3, 12
- 381, 465
+ 500, 465
Atank4
13, 13
- 322, 466
+ 441, 466
Atank3
13, 13
- 343, 569
+ 462, 569
Xie18
32, 12
- 407, 514
+ 526, 514
AS2DBT05
14, 12
- 297, 514
+ 416, 514
AS2DBT04
14, 12
- 423, 467
+ 542, 467
AS2DBT02
14, 12
- 287, 467
+ 406, 467
AS2DBT01
14, 12
- 267, 514
+ 386, 514
AS2DBT03
14, 12
@@ -3317,17 +3422,17 @@
True
MiddleCenter
White
- 357, 348
+ 476, 348
SpecialLabelBlue563
3, 24
- 337, 372
+ 456, 372
Dou29
43, 49
- 149, 292
+ 268, 292
HslTruck20
130, 72
@@ -3345,7 +3450,7 @@
True
MiddleCenter
Aqua
- 290, 566
+ 409, 566
SpecialLabelBlue564
38, 1
@@ -3363,7 +3468,7 @@
True
MiddleCenter
Aqua
- 396, 520
+ 515, 520
SpecialLabelBlue565
31, 1
@@ -3381,7 +3486,7 @@
True
MiddleCenter
Aqua
- 427, 459
+ 546, 459
SpecialLabelBlue566
1, 63
@@ -3399,7 +3504,7 @@
True
MiddleCenter
Aqua
- 291, 520
+ 410, 520
SpecialLabelBlue567
32, 1
@@ -3417,17 +3522,17 @@
True
MiddleCenter
Aqua
- 290, 459
+ 409, 459
SpecialLabelBlue568
1, 107
- 360, 455
+ 479, 455
LouDou45
56, 83
- 300, 455
+ 419, 455
LouDou46
56, 83
@@ -3445,7 +3550,7 @@
True
MiddleCenter
Aqua
- 250, 497
+ 369, 497
SpecialLabelBlue569
1, 48
@@ -3463,12 +3568,12 @@
True
MiddleCenter
Aqua
- 271, 497
+ 390, 497
SpecialLabelBlue570
1, 48
- 271, 321
+ 390, 321
Trucks20
113, 37
@@ -3486,7 +3591,7 @@
True
MiddleCenter
Aqua
- 139, 260
+ 258, 260
SpecialLabelBlue544
133, 1
@@ -3504,21 +3609,21 @@
True
MiddleCenter
White
- 327, 281
+ 446, 281
SpecialLabelBlue543
144, 3
- 386, 255
+ 505, 255
BU1DBT07
14, 12
- 324, 255
+ 443, 255
BU1DBT06
14, 12
@@ -3536,7 +3641,7 @@
True
MiddleCenter
White
- 388, 253
+ 507, 253
SpecialLabelBlue541
3, 29
@@ -3554,14 +3659,14 @@
True
MiddleCenter
White
- 327, 254
+ 446, 254
SpecialLabelBlue542
3, 27
- 297, 277
+ 416, 277
AS1DBT06
14, 12
@@ -3579,7 +3684,7 @@
True
MiddleCenter
Aqua
- 402, 174
+ 521, 174
SpecialLabelBlue540
26, 1
@@ -3597,7 +3702,7 @@
True
MiddleCenter
Aqua
- 291, 175
+ 410, 175
SpecialLabelBlue539
24, 1
@@ -3615,35 +3720,35 @@
True
MiddleCenter
Aqua
- 251, 213
+ 370, 213
SpecialLabelBlue538
177, 1
- 387, 146
+ 506, 146
BU1DBT04
14, 12
- 320, 146
+ 439, 146
BU1DBT03
14, 12
- 366, 151
+ 485, 151
BU1DBT02
14, 12
- 339, 152
+ 458, 152
BU1DBT01
14, 12
@@ -3661,7 +3766,7 @@
True
MiddleCenter
White
- 391, 140
+ 510, 140
SpecialLabelBlue536
2, 41
@@ -3679,7 +3784,7 @@
True
MiddleCenter
White
- 324, 140
+ 443, 140
SpecialLabelBlue537
2, 41
@@ -3697,7 +3802,7 @@
True
MiddleCenter
White
- 324, 140
+ 443, 140
SpecialLabelBlue535
69, 2
@@ -3715,7 +3820,7 @@
True
MiddleCenter
White
- 343, 147
+ 462, 147
SpecialLabelBlue534
30, 3
@@ -3733,7 +3838,7 @@
True
MiddleCenter
White
- 370, 149
+ 489, 149
SpecialLabelBlue530
3, 27
@@ -3751,7 +3856,7 @@
True
MiddleCenter
White
- 343, 149
+ 462, 149
SpecialLabelBlue529
3, 27
@@ -3769,67 +3874,67 @@
True
MiddleCenter
White
- 357, 135
+ 476, 135
SpecialLabelBlue528
3, 12
ylNormal
- 663, 455
+ 782, 455
DM1BSF01
43, 10
ylNormal
- 1206, 459
+ 1325, 459
DM1JSF01
43, 10
ylNormal
- 1146, 457
+ 1265, 457
DM1ISF01
43, 10
ylNormal
- 1088, 457
+ 1207, 457
DM1HSF01
43, 10
ylNormal
- 1029, 457
+ 1148, 457
DM1GSF01
43, 10
ylNormal
- 937, 457
+ 1056, 457
DM1FSF01
43, 10
ylNormal
- 878, 456
+ 997, 456
DM1ESF01
43, 10
ylNormal
- 779, 456
+ 898, 456
DM1DSF01
43, 10
ylNormal
- 722, 455
+ 841, 455
DM1CSF01
43, 10
ylNormal
- 604, 456
+ 723, 456
DM1ASF01
43, 10
@@ -3849,7 +3954,7 @@
True
0
White
- 1199, 215
+ 1318, 215
HR1JSI01
11, 12
@@ -3869,67 +3974,67 @@
True
0
White
- 1199, 169
+ 1318, 169
PR1JSI01
11, 12
- 1036, 401
+ 1155, 401
LSiloG
13, 13
- 1090, 401
+ 1209, 401
LSiloH
13, 13
- 1150, 401
+ 1269, 401
LSiloI
13, 13
- 1209, 401
+ 1328, 401
LSiloJ
13, 13
- 1209, 192
+ 1328, 192
HSiloJ
13, 13
- 1150, 192
+ 1269, 192
HSiloI
13, 13
- 1092, 192
+ 1211, 192
HSiloH
13, 13
- 1035, 191
+ 1154, 191
HSiloG
13, 13
- 940, 401
+ 1059, 401
LSiloF
13, 13
- 940, 192
+ 1059, 192
HSiloF
13, 13
@@ -3949,43 +4054,43 @@
True
0
White
- 930, 216
+ 1049, 216
HR1FSI01
11, 12
- 787, 401
+ 906, 401
LSiloD
13, 13
- 882, 401
+ 1001, 401
LSiloE
13, 13
- 882, 192
+ 1001, 192
HSiloE
13, 13
- 787, 192
+ 906, 192
HSiloD
13, 13
- 727, 401
+ 846, 401
LSiloC
13, 13
- 727, 192
+ 846, 192
HSiloC
13, 13
@@ -4005,7 +4110,7 @@
True
0
White
- 658, 216
+ 777, 216
HR1BSI01
11, 12
@@ -4025,50 +4130,50 @@
True
0
White
- 599, 215
+ 718, 215
HR1ASI01
11, 12
- 670, 401
+ 789, 401
LSiloB
13, 13
- 670, 192
+ 789, 192
HSiloB
13, 13
- 608, 192
+ 727, 192
HSiloA
13, 13
- 608, 401
+ 727, 401
LSiloA
13, 13
ParametersWithPc.FC16_Level.
- 381, 181
+ 500, 181
Atank2
13, 13
- 322, 182
+ 441, 182
Atank1
13, 13
- 1229, 155
+ 1348, 155
AS1JSI01
14, 12
@@ -4081,14 +4186,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1190, 152
+ 1309, 152
Bottle10
53, 308
- 1170, 155
+ 1289, 155
AS1ISI01
14, 12
@@ -4108,7 +4213,7 @@
True
0
White
- 1140, 215
+ 1259, 215
HR1ISI01
11, 12
@@ -4128,7 +4233,7 @@
True
0
White
- 1140, 169
+ 1259, 169
PR1ISI01
11, 12
@@ -4141,14 +4246,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1131, 152
+ 1250, 152
Bottle9
53, 308
- 1111, 155
+ 1230, 155
AS1HSI01
14, 12
@@ -4168,7 +4273,7 @@
True
0
White
- 1081, 215
+ 1200, 215
HR1HSI01
11, 12
@@ -4188,7 +4293,7 @@
True
0
White
- 1081, 169
+ 1200, 169
PR1HSI01
11, 12
@@ -4201,14 +4306,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1072, 152
+ 1191, 152
Bottle8
53, 308
- 1052, 155
+ 1171, 155
AS1GSI01
14, 12
@@ -4228,7 +4333,7 @@
True
0
White
- 1021, 215
+ 1140, 215
HR1GSI01
11, 12
@@ -4248,7 +4353,7 @@
True
0
White
- 1022, 169
+ 1141, 169
PR1GSI01
11, 12
@@ -4261,14 +4366,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 1013, 152
+ 1132, 152
Bottle7
53, 308
- 960, 153
+ 1079, 153
AS1FSI01
14, 12
@@ -4288,7 +4393,7 @@
True
0
White
- 930, 167
+ 1049, 167
PR1FSI01
11, 12
@@ -4301,14 +4406,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 921, 150
+ 1040, 150
Bottle6
53, 308
- 901, 153
+ 1020, 153
AS1ESI01
14, 12
@@ -4328,7 +4433,7 @@
True
0
White
- 871, 216
+ 990, 216
HR1ESI01
11, 12
@@ -4348,7 +4453,7 @@
True
0
White
- 871, 167
+ 990, 167
PR1ESI01
11, 12
@@ -4361,14 +4466,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 862, 150
+ 981, 150
Bottle5
53, 308
- 806, 153
+ 925, 153
AS1DSI01
14, 12
@@ -4388,7 +4493,7 @@
True
0
White
- 776, 216
+ 895, 216
HR1DSI01
11, 12
@@ -4408,7 +4513,7 @@
True
0
White
- 776, 168
+ 895, 168
PR1DSI01
11, 12
@@ -4421,14 +4526,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 767, 150
+ 886, 150
Bottle4
53, 308
- 747, 153
+ 866, 153
AS1CSI01
14, 12
@@ -4448,7 +4553,7 @@
True
0
White
- 717, 216
+ 836, 216
HR1CSI01
11, 12
@@ -4468,7 +4573,7 @@
True
0
White
- 717, 168
+ 836, 168
PR1CSI01
11, 12
@@ -4481,14 +4586,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 708, 150
+ 827, 150
Bottle3
53, 308
- 688, 154
+ 807, 154
AS1BSI01
14, 12
@@ -4508,7 +4613,7 @@
True
0
White
- 658, 168
+ 777, 168
PR1BSI01
11, 12
@@ -4521,14 +4626,14 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 649, 150
+ 768, 150
Bottle2
53, 308
- 630, 153
+ 749, 153
AS1ASI01
14, 12
@@ -4548,7 +4653,7 @@
True
0
White
- 599, 168
+ 718, 168
PR1ASI01
11, 12
@@ -4561,52 +4666,52 @@
142, 196, 216
240, 240, 240
151, 232, 244
- 590, 150
+ 709, 150
Bottle1
53, 308
- 1678, 22
+ 1860, 19
Dou27
30, 40
- 343, 285
+ 462, 285
Xie17
32, 12
- 407, 230
+ 526, 230
AS1DBT05
14, 12
- 297, 230
+ 416, 230
AS1DBT04
14, 12
- 423, 183
+ 542, 183
AS1DBT02
14, 12
- 287, 183
+ 406, 183
AS1DBT01
14, 12
- 267, 230
+ 386, 230
AS1DBT03
14, 12
@@ -4624,12 +4729,12 @@
True
MiddleCenter
White
- 357, 65
+ 476, 65
SpecialLabelBlue514
3, 25
- 337, 88
+ 456, 88
Dou28
43, 49
@@ -4703,12 +4808,12 @@
True
炭粉
Yellow
- 205, 19
+ 324, 19
MCLabel270
29, 12
- 149, 10
+ 268, 10
HslTruck19
130, 72
@@ -4726,7 +4831,7 @@
True
MiddleCenter
Aqua
- 290, 282
+ 409, 282
SpecialLabelBlue520
38, 1
@@ -4744,7 +4849,7 @@
True
MiddleCenter
Aqua
- 396, 236
+ 515, 236
SpecialLabelBlue521
31, 1
@@ -4762,7 +4867,7 @@
True
MiddleCenter
Aqua
- 427, 175
+ 546, 175
SpecialLabelBlue522
1, 63
@@ -4780,7 +4885,7 @@
True
MiddleCenter
Aqua
- 291, 236
+ 410, 236
SpecialLabelBlue523
32, 1
@@ -4798,17 +4903,17 @@
True
MiddleCenter
Aqua
- 290, 175
+ 409, 175
SpecialLabelBlue524
1, 107
- 360, 171
+ 479, 171
LouDou43
56, 83
- 300, 171
+ 419, 171
LouDou44
56, 83
@@ -4826,7 +4931,7 @@
True
MiddleCenter
Aqua
- 250, 213
+ 369, 213
SpecialLabelBlue526
1, 48
@@ -4844,17 +4949,17 @@
True
MiddleCenter
Aqua
- 271, 213
+ 390, 213
SpecialLabelBlue527
1, 48
- 271, 39
+ 390, 39
Trucks19
113, 37
- 29, 12
+ 148, 12
QiGuanDanYuan8
99, 74
@@ -4862,7 +4967,7 @@
Fill
0, 0
Panel15
- 1738, 925
+ 1924, 944
AAEAAAD/////AQAAAAAAAAAMAgAAAEtNZXNuYWMuQ29udHJvbHMuQmFzZSwgVmVyc2lvbj0xLjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPW51bGwEAQAAAJMBU3lzdGVtLkNvbGxlY3Rpb25zLkdlbmVyaWMuTGlzdGAxW1tNZXNuYWMuQ29udHJvbHMuQmFzZS5EZXNpZ25BY3Rpb24sIE1lc25hYy5Db250cm9scy5CYXNlLCBWZXJzaW9uPTEuMC4wLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49bnVsbF1dAwAAAAZfaXRlbXMFX3NpemUIX3ZlcnNpb24EAAAjTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uW10CAAAACAgJAwAAAAEAAAACAAAABwMAAAAAAQAAAAQAAAAEIU1lc25hYy5Db250cm9scy5CYXNlLkRlc2lnbkFjdGlvbgIAAAAJBAAAAA0DBQQAAAAhTWVzbmFjLkNvbnRyb2xzLkJhc2UuRGVzaWduQWN0aW9uAwAAABU8R1VJRD5rX19CYWNraW5nRmllbGQVPE5hbWU+a19fQmFja2luZ0ZpZWxkFzxSZW1hcms+a19fQmFja2luZ0ZpZWxkAQEBAgAAAAYFAAAAIDcxODhEMjExMkM4NTQ1NEI5OEIyQTFDMjk2RDBCQzU3BgYAAAAV6L6T6YCB55WM6Z2i5Yid5aeL5YyWBgcAAAAV6L6T6YCB55WM6Z2i5Yid5aeL5YyWCw==
@@ -4880,7 +4985,7 @@
False
False
Control
- 1754, 964
+ 1940, 983
WindowsDefaultLocation
榄菊输送界面
Normal