增加了初始弹窗,但是没有成功
更改了CAN和LIN协调 更改了配置程序的名称顺序
This commit is contained in:
35
CapMachine.Model/CANLIN/LINConfigExd.cs
Normal file
35
CapMachine.Model/CANLIN/LINConfigExd.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
|
||||
namespace CapMachine.Model.CANLIN
|
||||
{
|
||||
/// <summary>
|
||||
/// LIN配置拓展数据
|
||||
/// </summary>
|
||||
[Table(Name = "LINConfigExd")]
|
||||
public class LINConfigExd
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[Column(IsPrimary = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 波特率
|
||||
/// </summary>
|
||||
[Column(Name = "BaudRate")]
|
||||
public int BaudRate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 周期
|
||||
/// </summary>
|
||||
[Column(Name = "Cycle")]
|
||||
public int Cycle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Ldf 文件路径
|
||||
/// </summary>
|
||||
[Column(Name = "LdfPath", IsNullable = false, StringLength = 500)]
|
||||
public string? LdfPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user