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.
53 lines
1.5 KiB
C#
53 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SqlSugar;
|
|
|
|
namespace Sln.Wcs.Model.Domain
|
|
{
|
|
/// <summary>
|
|
/// PLC地址配置实体类
|
|
/// </summary>
|
|
[SugarTable("wcs_plc_address")]
|
|
public class WcsPlcAddress
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 楼编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "workshop_id", ColumnDescription = "楼编号")]
|
|
public string WorkshopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 层数
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "workshop_level", ColumnDescription = "层数")]
|
|
public int WorkshopLevel { get; set; }
|
|
|
|
/// <summary>
|
|
/// PLC IP地址
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "plc_ip", ColumnDescription = "PLC IP地址")]
|
|
public string PlcIp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "create_time", ColumnDescription = "创建时间")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "update_time", ColumnDescription = "更新时间")]
|
|
public DateTime UpdateTime { get; set; }
|
|
}
|
|
}
|