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