首次提交:添加src文件夹代码
This commit is contained in:
35
Cowain.Bake.Common/Models/CommonModel.cs
Normal file
35
Cowain.Bake.Common/Models/CommonModel.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user