|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using MaiMuAOI.SysCtrl;
- using MaiMuAOI.SysUI.StepUI.PropExtend;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace MaiMuAOI.SysUI.ProcessStep.Prop
- {
- public class TensionProp
- {
- [PropertyOrder(1), Browsable(true), Category("1 测试"), DisplayName("1.1 测试次数"), Description("需要进行的张力测试次数")]
- public int TestCnt { get; set; }
- [PropertyOrder(2), Browsable(true), Category("2 参数"), DisplayName("2.1 读取延时(ms)"), Description("测试读取数据之前延时ms")]
- public int DelayTime { get; set; }
- [PropertyOrder(3), Browsable(true), Category("2 参数"), DisplayName("2.2 读取N个数据"), Description("测试读取多少数据")]
- public int DataCnt { get; set; }
- [PropertyOrder(4), Browsable(true), Category("2 参数"), DisplayName("2.3 单次数据处理"), Description("根据读到的N个数据进行取值处理")]
- public DataProcess ProcessData { get; set; }
- [PropertyOrder(5), Browsable(true), Category("2 参数"), DisplayName("2.4 数据判定方式"), Description("对采集数据进行判定处理的方式")]
- public DataJudgment JudgmentData { get; set; }
- [PropertyOrder(6), Browsable(true), Category("3 补偿"), DisplayName("3.1 补偿值"), Description("测试读取数据后加入的补偿值")]
- public double OffsetValue { get; set; }
-
- [PropertyOrder(31), Browsable(true), Category("4 上下限"), DisplayName("4.1 启用流程上下限"), Description("使用流程中设置的上下限判断")]
- public bool OpenUseLimit { get; set; }
- [PropertyOrder(32), Browsable(true), Category("4 上下限"), DisplayName("4.2 标准值"), Description("设置判断标志值")]
- public double StandardValues { get; set; }
- [PropertyOrder(33), Browsable(true), Category("4 上下限"), DisplayName("4.3 上限"), Description("设置判断上限")]
- public double MaxLimit { get; set; }
- [PropertyOrder(34), Browsable(true), Category("4 上下限"), DisplayName("4.4 下限"), Description("设置流程下限")]
- public double MinLimit { get; set; }
-
- [PropertyOrder(41), Browsable(true), Category("5 打印"), DisplayName("5.1 开启Excel打印"), Description("启用本工序数据打印")]
- public bool OpenPrint { get; set; }
- [PropertyOrder(42), Browsable(true), Category("5 打印"), DisplayName("5.2 打印数据"), Description("打印均值数据的位置")]
- public string ExcelData { get; set; }
- [PropertyOrder(43), Browsable(true), Category("5 打印"), DisplayName("5.3 打印上下限"), Description("打印上下限的位置")]
- public string ExcelLimit { get; set; }
- [PropertyOrder(44), Browsable(true), Category("5 打印"), DisplayName("5.4 开启标签打印"), Description("启用本工序数据打印")]
- public bool OpenPrintLabel { get; set; }
- [PropertyOrder(45), Browsable(true), Category("5 打印"), DisplayName("5.5 标签打印数据"), Description("打印均值数据的位置")]
- public string LabelData { get; set; }
- [PropertyOrder(46), Browsable(true), Category("5 打印"), DisplayName("5.6 标签打印上下限"), Description("打印上下限的位置")]
- public string LabelLimit { get; set; }
-
- [PropertyOrder(51), Browsable(true), Category("6 控制"), DisplayName("6.1 禁用工序"), Description("禁用本工序(True-是;False-否)")]
- public bool Disable { get; set; }
-
- public TensionProp()
- {
- TestCnt = 5;
- DelayTime = 0;
- DataCnt = 1;
- ProcessData = DataProcess.均值;
- JudgmentData = DataJudgment.均值;
- OffsetValue = 0;
- Disable = false;
-
- OpenUseLimit = false;
- StandardValues = 0;
- MaxLimit = 0;
- MinLimit = 0;
-
- OpenPrint = false;
- OpenPrintLabel = false;
- ExcelData = "";
- ExcelLimit = "";
- LabelData = "";
- LabelLimit = "";
- }
- /// <summary>
- /// 序列化
- /// </summary>
- /// <param name="obj"></param>
- /// <returns></returns>
- public string serialize()
- {
- return JsonConvert.SerializeObject(this);
- }
- /// <summary>
- /// 反序列化
- /// </summary>
- /// <param name="json"></param>
- /// <returns></returns>
- public void deserialize(string json)
- {
- var o = JsonConvert.DeserializeObject<TensionProp>(json);
- Type type = o.GetType();
- System.Reflection.PropertyInfo[] properties = type.GetProperties();
- foreach (System.Reflection.PropertyInfo property in properties)
- {
- string name = property.Name;
- if (!type.GetProperty(name).IsDefined(typeof(JsonIgnoreAttribute), true))
- {
- var value = property.GetValue(o);
- this.GetType().GetProperty(name).SetValue(this, value);
- }
- }
- }
- }
- }
|