异常开始结束带代码提交

This commit is contained in:
DEVICE8\12494
2023-05-21 21:03:45 +08:00
parent 23dd5a7604
commit 709ef585b2
34 changed files with 1066 additions and 33 deletions

View File

@@ -0,0 +1,56 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.EquipMgr.Entities;
/// <summary>
/// 模具维修任务表
/// </summary>
[SugarTable("tool_mold_maintain_task")]
public partial class ToolMoldMaintainTask : BaseEntity<string>
{
public ToolMoldMaintainTask()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 维修单号
/// </summary>
public string? code { get; set; }
/// <summary>
/// 模具id
/// </summary>
public string? mold_id { get; set; }
/// <summary>
/// 报修人
/// </summary>
public string? create_id { get; set; }
/// <summary>
/// 保修时间
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// 维修人
/// </summary>
public string? modify_id { get; set; }
/// <summary>
/// 维修开始时间
/// </summary>
public DateTime? modify_strat_time { get; set; }
/// <summary>
/// 维修结束时间
/// </summary>
public DateTime? modify_end_time { get; set; }
/// <summary>
/// 维修单状态
/// </summary>
public string status { get; set; }
}