You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
868 B
C#
36 lines
868 B
C#
using SqlSugar;
|
|
|
|
namespace ProductionSystem_Model.DbModel.System
|
|
{
|
|
/// <summary>
|
|
/// 基础配置
|
|
/// </summary>
|
|
[SugarTable("sys_base_setting")]
|
|
public class Sys_Base_Setting : BaseModel
|
|
{
|
|
/// <summary>
|
|
/// 产线名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "line_name")]
|
|
public string LineName { get; set; }
|
|
|
|
/// <summary>
|
|
/// PLC的IP地址
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plc_ip")]
|
|
public string PlcIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// PLC端口
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plc_port")]
|
|
public int PlcPort { get; set; }
|
|
|
|
/// <summary>
|
|
/// PLC采集频率
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "read_rate")]
|
|
public int ReadRate { get; set; }
|
|
}
|
|
}
|