zhuangpei-mesbackend/ZR.Model/MES/dev/DeviceRelAccountInspect.cs

57 lines
1.5 KiB
C#
Raw Normal View History

2024-05-21 18:58:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.dev
{
/// <summary>
/// 设备检查项与设备台账关联表
/// </summary>
[SugarTable("device_rel_account_inspect")]
public class DeviceRelAccountInspect
{
/// <summary>
/// 设备检项id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_inspect_id")]
public int FkInspectId { get; set; }
/// <summary>
/// 设备台账id
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_account_id")]
public int FkAccountId { get; set; }
/// <summary>
/// 序号
/// </summary>
public int? Sort { get; set; }
/// <summary>
/// 创建人
/// </summary>
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
/// <summary>
/// 更新人
/// </summary>
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}