equipmentinformationView.cs
674 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("equipmentinformationView")]
public partial class EquipmentinformationView
{
[SugarColumn(IsNullable = true)]
public int equipmentId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string equipmentTypeTemplateCode { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string informationValue { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string remark { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
}
}