api_workOrder_detail.cs
919 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("api_workOrder_detail")]
public partial class api_workOrder_detail
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid headKeys { get; set; }
/// <summary>
/// Json
/// </summary>
public string JsonValue { get; set; }
/// <summary>
/// 建立时间
/// </summary>
[SugarColumn(ColumnDescription = "建立时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 建立者
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "建立者", IsNullable = true)]
public string createBy { get; set; }
}
}