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
{
///
/// PLC信息
///
[SugarTable("BASE_PLC_INFO")]
public class BasePlcInfo
{
///
/// 主键
///
[SugarColumn(ColumnName = "OBJID", IsPrimaryKey = true)]
public string objid { get; set; }
///
/// PLC编号
///
[SugarColumn(ColumnName = "PLC_CODE")]
public int plcCode { get; set; }
///
/// PLC名称
///
[SugarColumn(ColumnName = "PLC_NAME")]
public string plcName { get; set; }
///
/// PLC位置
///
[SugarColumn(ColumnName = "PLC_POSITION")]
public string plcPosition { get; set; }
///
/// PLC地址
///
[SugarColumn(ColumnName = "PLC_ADDRESS")]
public string plcAddress { get; set; }
///
/// PLC类型
///
[SugarColumn(ColumnName = "PLC_TYPE")]
public string plcType { get; set; }
///
/// 所处区域
///
[SugarColumn(ColumnName = "PLC_AREA")]
public LocationArea plcArea { get; set; }
///
/// 所处仓库
///
[SugarColumn(ColumnName = "STORE_CODE")]
public string storeCode { get; set; }
///
/// 删除标志
///
[SugarColumn(ColumnName = "DELETE_FLAG")]
public DeleteFlag deleteFlag { get; set; }
///
/// 记录时间
///
[SugarColumn(ColumnName = "RECORD_TIME")]
public DateTime? recordTime { get; set; }
}
}