重写模具保养
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 模具保养模具模板子表
|
||||
/// </summary>
|
||||
[SugarTable("tool_maintain_tem_mold_d")]
|
||||
public partial class ToolMaintainTemMoldD : BaseEntity<string>
|
||||
{
|
||||
public ToolMaintainTemMoldD()
|
||||
{
|
||||
id = SnowflakeIdHelper.NextId();
|
||||
}
|
||||
/// <summary>
|
||||
/// 模具保养模具模板主表id
|
||||
/// </summary>
|
||||
public string maintain_tem_mold_id { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 模具保养项id
|
||||
/// </summary>
|
||||
public string maintain_item_id { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user