using SqlSugar; namespace ProductionSystem_Model.DbModel.System { /// /// 基础配置 /// [SugarTable("sys_base_setting")] public class Sys_Base_Setting : BaseModel { /// /// 产线名称 /// [SugarColumn(ColumnName = "line_name")] public string LineName { get; set; } /// /// PLC的IP地址 /// [SugarColumn(ColumnName = "plc_ip")] public string PlcIp { get; set; } /// /// PLC端口 /// [SugarColumn(ColumnName = "plc_port")] public int PlcPort { get; set; } /// /// PLC采集频率 /// [SugarColumn(ColumnName = "read_rate")] public int ReadRate { get; set; } } }