36 lines
954 B
C#
36 lines
954 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Cowain.Bake.Common.Models
|
|
{
|
|
public class ProceParamList
|
|
{
|
|
public string ParameterCode { get; set; }
|
|
public string Description { get; set; }
|
|
public string TargetValue { get; set; }
|
|
}
|
|
public class AddrValue
|
|
{
|
|
public string Addr { get; set; }
|
|
public object Value { get; set; }
|
|
}
|
|
public class SignalEvent
|
|
{
|
|
public string InfoName { get; set; } //枚举名
|
|
public string InfoDesc { get; set; } //描述
|
|
public int DetailNumber { get; set; } //编号
|
|
public DateTime RecvTime { get; set; }//时间
|
|
}
|
|
|
|
public class SizeAndLocationModel
|
|
{
|
|
public double Left { get; set; }
|
|
public double Top { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
}
|
|
}
|