58 lines
1.2 KiB
C#
58 lines
1.2 KiB
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.EquipMgr.Entities;
|
|
|
|
/// <summary>
|
|
/// 模具物料关联表
|
|
/// </summary>
|
|
[SugarTable("tool_molds_material")]
|
|
public partial class ToolMoldsMaterial : BaseEntity<string>
|
|
{
|
|
public ToolMoldsMaterial()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
/// <summary>
|
|
/// 模具编号
|
|
/// </summary>
|
|
public string mold_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
public string material_id { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 创建用户
|
|
/// </summary>
|
|
public string? create_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public DateTime create_time { get; set; } = DateTime.Now;
|
|
|
|
/// <summary>
|
|
/// 修改用户
|
|
/// </summary>
|
|
public string? modify_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 修改时间
|
|
/// </summary>
|
|
public DateTime? modify_time { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实际使用型腔数
|
|
/// </summary>
|
|
public int? real_cavity_qty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料同组标识
|
|
/// </summary>
|
|
public string material_group { get; set; } = string.Empty;
|
|
|
|
}
|