设备管理
This commit is contained in:
62
DOAN.Model/MES/Device/DeviceFormConfig.cs
Normal file
62
DOAN.Model/MES/Device/DeviceFormConfig.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
namespace DOAN.Model.MES.dev
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备检查项表单配置表
|
||||
/// </summary>
|
||||
[SugarTable("device_form_config")]
|
||||
public class DeviceFormConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// id 雪花
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备检查项id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_device_inspect_id")]
|
||||
public int FkDeviceInspectId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单类型
|
||||
/// </summary>
|
||||
public int? Type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单选项内容
|
||||
/// </summary>
|
||||
public string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单标题
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "title")]
|
||||
public string Title { 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