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.
182 lines
7.0 KiB
C#
182 lines
7.0 KiB
C#
using Mesnac.Controls.Base;
|
|
using Mesnac.Controls.Default;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web.UI.WebControls;
|
|
using Button = System.Windows.Forms.Button;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.AutoControl.Entity
|
|
{
|
|
public class MCRadioButtonEntity
|
|
{
|
|
public MCRadioButton Line1 { get; set; }
|
|
public MCRadioButton Line2 { get; set; }
|
|
public MCRadioButton Line3 { get; set; }
|
|
public MCRadioButton Line4 { get; set; }
|
|
public MCRadioButton Line5 { get; set; }
|
|
public MCRadioButton Line6 { get; set; }
|
|
public MCRadioButton Line7 { get; set; }
|
|
public MCRadioButton Line8 { get; set; }
|
|
public MCRadioButton Dry1 { get; set; }
|
|
public MCRadioButton Dry2 { get; set; }
|
|
public MCRadioButton Dry3 { get; set; }
|
|
public MCRadioButton Dry4 { get; set; }
|
|
}
|
|
|
|
public class MCComboBoxEntity
|
|
{
|
|
public MCCombobox ChooseMaterial1 { get; set; }
|
|
public MCCombobox ChooseMaterial2 { get; set; }
|
|
public MCCombobox DryM1 { get; set; }
|
|
public MCCombobox DryM2 { get; set; }
|
|
public MCCombobox DryM3 { get; set; }
|
|
public MCCombobox DryM4 { get; set; }
|
|
public MCCombobox DryM5 { get; set; }
|
|
public MCCombobox DryM6 { get; set; }
|
|
public MCCombobox DryM7 { get; set; }
|
|
public MCCombobox DryM8 { get; set; }
|
|
public MCCombobox DryM9 { get; set; }
|
|
public MCCombobox DryM10 { get; set; }
|
|
public MCCombobox DryM11 { get; set; }
|
|
public MCCombobox DryM12 { get; set; }
|
|
public MCCombobox DryM13 { get; set; }
|
|
//public MCCombobox DryM14 { get; set; }
|
|
//public MCCombobox DryM15 { get; set; }
|
|
public MCCombobox PasteChooseDry { get; set; }
|
|
public MCCombobox PasteChooseWet { get; set; }
|
|
|
|
|
|
public MCCombobox CALeftOrRight { get; set; }
|
|
public MCCombobox HALeftOrRight { get; set; }
|
|
public MCCombobox CBLeftOrRight { get; set; }
|
|
public MCCombobox HBLeftOrRight { get; set; }
|
|
}
|
|
|
|
public class MCLabelEntity
|
|
{
|
|
public MCLabel State1 { get; set; }
|
|
public MCLabel State2 { get; set; }
|
|
public MCLabel State3 { get; set; }
|
|
public MCLabel State4 { get; set; }
|
|
public MCLabel State5 { get; set; }
|
|
public MCLabel State6 { get; set; }
|
|
public MCLabel State7 { get; set; }
|
|
public MCLabel State8 { get; set; }
|
|
public MCLabel RepairState { get; set; }
|
|
}
|
|
|
|
public class ButtonEntity
|
|
{
|
|
public Button WetManualControl { get; set; }
|
|
public Button WetManualControlStop { get; set; }
|
|
public Button Download { get; set; }
|
|
public Button LineStart { get; set; }
|
|
public Button LineStop { get; set; }
|
|
|
|
public Button BtnQz { get; set; }
|
|
public Button GelManualPowder { get; set; }
|
|
public Button GelManualColdWater { get; set; }
|
|
public Button GelManualHotWater { get; set; }
|
|
public Button WetManualGel { get; set; }
|
|
public Button RepairMode { get; set; }
|
|
|
|
public Button GRepairMode { get; set; }
|
|
|
|
public Button ZeroClean { get; set; }
|
|
|
|
public Button DryStartOrStop { get; set; }
|
|
|
|
public Button DryPauseOrReply { get; set; }
|
|
|
|
public Button DryDownload { get; set; }
|
|
public Button WaterDownload { get; set; }
|
|
public Button PasteDry { get; set; }
|
|
public Button PasteWet { get; set; }
|
|
public Button HAOnOff { get; set; }
|
|
public Button CAOnOff { get; set; }
|
|
public Button HBOnOff { get; set; }
|
|
public Button CBOnOff { get; set; }
|
|
public Button EliAlarms { get; set; }
|
|
public Button DownloadRequest { get; set; }
|
|
public Button GelSetWeight { get; set; }
|
|
public Button TimeRecordClear { get; set; }
|
|
}
|
|
|
|
public class MCTextBoxEntity
|
|
{
|
|
public MCTextBox MaterialWeight1 { get; set; }
|
|
public MCTextBox MaterialWeight2 { get; set; }
|
|
public MCTextBox MaterialTolerance1 { get; set; }
|
|
public MCTextBox MaterialTolerance2 { get; set; }
|
|
public MCTextBox GelSpeedSet { get; set; }
|
|
public MCTextBox GelPosTimeA { get; set; }
|
|
public MCTextBox GelNagTimeB { get; set; }
|
|
public MCTextBox GelPosTimeC { get; set; }
|
|
public MCTextBox GelWaterTime { get; set; }
|
|
public MCTextBox GelWaitTime { get; set; }
|
|
public MCTextBox GelCloseHeatTime { get; set; }
|
|
public MCTextBox GelOutDelayTime { get; set; }
|
|
public MCTextBox WetDryWeight { get; set; }
|
|
public MCTextBox WetMixTime { get; set; }
|
|
public MCTextBox WetOutDelayTime { get; set; }
|
|
public MCTextBox ManualWeight { get; set; }
|
|
public MCTextBox ManualTolerance { get; set; }
|
|
public MCTextBox ColdValueA { get; set; }
|
|
public MCTextBox ColdValueB { get; set; }
|
|
public MCTextBox HotValueA { get; set; }
|
|
public MCTextBox HotValueB { get; set; }
|
|
public MCTextBox ColdToleranceA { get; set; }
|
|
public MCTextBox ColdToleranceB { get; set; }
|
|
public MCTextBox HotToleranceA { get; set; }
|
|
public MCTextBox HotToleranceB { get; set; }
|
|
public MCTextBox DryW1 { get; set; }
|
|
public MCTextBox DryW2 { get; set; }
|
|
public MCTextBox DryW3 { get; set; }
|
|
public MCTextBox DryW4 { get; set; }
|
|
public MCTextBox DryW5 { get; set; }
|
|
public MCTextBox DryW6 { get; set; }
|
|
public MCTextBox DryW7 { get; set; }
|
|
public MCTextBox DryW8 { get; set; }
|
|
public MCTextBox DryW9 { get; set; }
|
|
public MCTextBox DryW10 { get; set; }
|
|
public MCTextBox DryW11 { get; set; }
|
|
public MCTextBox DryW12 { get; set; }
|
|
public MCTextBox DryW13 { get; set; }
|
|
//public MCTextBox DryW14 { get; set; }
|
|
//public MCTextBox DryW15 { get; set; }
|
|
public MCTextBox DryT1 { get; set; }
|
|
public MCTextBox DryT2 { get; set; }
|
|
public MCTextBox DryT3 { get; set; }
|
|
public MCTextBox DryT4 { get; set; }
|
|
public MCTextBox DryT5 { get; set; }
|
|
public MCTextBox DryT6 { get; set; }
|
|
public MCTextBox DryT7 { get; set; }
|
|
public MCTextBox DryT8 { get; set; }
|
|
public MCTextBox DryT9 { get; set; }
|
|
public MCTextBox DryT10 { get; set; }
|
|
public MCTextBox DryT11 { get; set; }
|
|
public MCTextBox DryT12 { get; set; }
|
|
public MCTextBox DryT13 { get; set; }
|
|
//public MCTextBox DryT14 { get; set; }
|
|
//public MCTextBox DryT15 { get; set; }
|
|
public MCTextBox DryWaitTime { get; set; }
|
|
public MCTextBox DryOutDelayTime { get; set; }
|
|
public MCTextBox CADeviation { get; set; }
|
|
public MCTextBox HADeviation { get; set; }
|
|
public MCTextBox CBDeviation { get; set; }
|
|
public MCTextBox HBDeviation { get; set; }
|
|
public MCTextBox DrySpeed1 { get; set; }
|
|
public MCTextBox DrySpeed2 { get; set; }
|
|
public MCTextBox DrySpeed3 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|