首次提交:添加src文件夹代码

This commit is contained in:
2026-02-27 14:02:43 +08:00
commit d330cfbca7
4184 changed files with 5546478 additions and 0 deletions

View 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; }
}
}