设备管理
This commit is contained in:
57
ZR.Model/MES/Device/DeviceRelPpAt.cs
Normal file
57
ZR.Model/MES/Device/DeviceRelPpAt.cs
Normal file
@@ -0,0 +1,57 @@
|
||||
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_pp_at")]
|
||||
public class DeviceRelPpAt
|
||||
{
|
||||
/// <summary>
|
||||
/// 点检计划 id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_point_inspection_plan_id")]
|
||||
public string FkPointInspectionPlanId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备台账id
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_device_account_id")]
|
||||
public int FkDeviceAccountId { 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user