设备管理
This commit is contained in:
68
ZR.Model/MES/Device/DevicePointInspectionPlan.cs
Normal file
68
ZR.Model/MES/Device/DevicePointInspectionPlan.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
|
||||
namespace ZR.Model.MES.dev
|
||||
{
|
||||
/// <summary>
|
||||
/// 点检任务
|
||||
/// </summary>
|
||||
[SugarTable("device_point_inspection_plan")]
|
||||
public class DevicePointInspectionPlan
|
||||
{
|
||||
/// <summary>
|
||||
/// id(雪花)
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 点检检名称
|
||||
/// </summary>
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 执行人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_person_id")]
|
||||
public string FkPersonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 点检状态
|
||||
/// </summary>
|
||||
public int? Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类型(内部) 1是检查 2是保养
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "inner_type")]
|
||||
public int? InnerType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { 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