using SqlSugar; namespace ZJ_BYD.Model { /// /// 当前工控机配置 /// [SugarTable("t_currentconfig")] public class T_CurrentConfig : BaseModel { /// /// 工控机标识 /// [SugarColumn(ColumnName = "ipcid")] public string IpcId { get; set; } /// /// 产线编码 /// [SugarColumn(ColumnName = "linecode")] public string LineCode { get; set; } /// /// 产线名称 /// [SugarColumn(ColumnName = "linename")] public string LineName { get; set; } /// /// MES IP地址 /// [SugarColumn(ColumnName = "mesip")] public string MesIp { get; set; } /// /// MES端口 /// [SugarColumn(ColumnName = "mesport")] public string MesPort { get; set; } /// /// MES接口地址 /// [SugarColumn(ColumnName = "mesapiurl")] public string MesApiUrl { get; set; } /// /// PLC IP地址 /// [SugarColumn(ColumnName = "plcip")] public string PlcIp { get; set; } /// /// PLC端口 /// [SugarColumn(ColumnName = "plcport")] public string PlcPort { get; set; } /// /// 最高权限口令 /// [SugarColumn(ColumnName = "hightpwd")] public string HightPwd { get; set; } /// /// 菜单权限口令 /// [SugarColumn(ColumnName = "menupwd")] public string MenuPwd { get; set; } /// /// 地域码 /// [SugarColumn(ColumnName = "areacode")] public string AreaCode { get; set; } /// /// 工厂代码 /// [SugarColumn(ColumnName = "deptcode")] public string DeptCode { get; set; } } }