模具设备产品关联
This commit is contained in:
78
EquipMgr/Tnb.EquipMgr.Entities/Entity/ToolMoldsProduct.cs
Normal file
78
EquipMgr/Tnb.EquipMgr.Entities/Entity/ToolMoldsProduct.cs
Normal file
@@ -0,0 +1,78 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using SqlSugar;
|
||||
using Tnb.Common.Contracts;
|
||||
|
||||
namespace Tnb.EquipMgr.Entities.Entity
|
||||
{
|
||||
///<summary>
|
||||
///模具产品关联表
|
||||
///</summary>
|
||||
[SugarTable("tool_molds_product")]
|
||||
public partial class ToolMoldsProduct : BaseEntity<string>
|
||||
{
|
||||
public ToolMoldsProduct()
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Desc:模具编号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string mold_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:产品编号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public string product_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建时间
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
public DateTime create_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建用户
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string create_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改用户
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string modify_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:修改时间
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public DateTime? modify_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:实际使用型腔数
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? real_cavity_qty { get; set; }
|
||||
/// <summary>
|
||||
/// Desc:产品同组标识
|
||||
/// Default:NULL::character varying
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string product_group { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user