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