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.

77 lines
1.9 KiB
C#

using AUCMA.STORE.Entity.Enums;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUCMA.STORE.Entity.DAO
{
/// <summary>
/// PLC信息
///</summary>
[SugarTable("BASE_PLC_INFO")]
public class BasePlcInfo
{
/// <summary>
/// 主键
///</summary>
[SugarColumn(ColumnName = "OBJID", IsPrimaryKey = true)]
public string objid { get; set; }
/// <summary>
/// PLC编号
///</summary>
[SugarColumn(ColumnName = "PLC_CODE")]
public int plcCode { get; set; }
/// <summary>
/// PLC名称
///</summary>
[SugarColumn(ColumnName = "PLC_NAME")]
public string plcName { get; set; }
/// <summary>
/// PLC位置
///</summary>
[SugarColumn(ColumnName = "PLC_POSITION")]
public string plcPosition { get; set; }
/// <summary>
/// PLC地址
///</summary>
[SugarColumn(ColumnName = "PLC_ADDRESS")]
public string plcAddress { get; set; }
/// <summary>
/// PLC类型
/// </summary>
[SugarColumn(ColumnName = "PLC_TYPE")]
public string plcType { get; set; }
/// <summary>
/// 所处区域
///</summary>
[SugarColumn(ColumnName = "PLC_AREA")]
public LocationArea plcArea { get; set; }
/// <summary>
/// 所处仓库
///</summary>
[SugarColumn(ColumnName = "STORE_CODE")]
public string storeCode { get; set; }
/// <summary>
/// 删除标志
/// </summary>
[SugarColumn(ColumnName = "DELETE_FLAG")]
public DeleteFlag deleteFlag { get; set; }
/// <summary>
/// 记录时间
///</summary>
[SugarColumn(ColumnName = "RECORD_TIME")]
public DateTime? recordTime { get; set; }
}
}