200 lines
5.2 KiB
C#
200 lines
5.2 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using JNPF.Common.Security;
|
||
using SqlSugar;
|
||
using Tnb.Common.Contracts;
|
||
|
||
namespace Tnb.EquipMgr.Entities
|
||
{
|
||
///<summary>
|
||
///模具信息表
|
||
///</summary>
|
||
[SugarTable("tool_molds")]
|
||
public partial class ToolMolds
|
||
{
|
||
public ToolMolds(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:编号
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true)]
|
||
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
||
|
||
/// <summary>
|
||
/// Desc:模具编号
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? mold_code {get;set;}
|
||
|
||
|
||
/// <summary>
|
||
/// Desc:模具名称
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? mold_name {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:物料Id
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? material_id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:设备Id
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? eqp_id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:设备代码
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? eqp_code {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:生产模数
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? production_modulus {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:保养模次
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? maintain_qty {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:磨具使用状态
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? mold_status {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:日定额
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public decimal? daily_rate {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:工时定额(H/PCS)
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public decimal? hour_norm {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:成长周期
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? growth_cycle {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:型腔数
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? cavity_qty {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:模具寿命
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? mold_life {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:模具剩余寿命
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? mold_remaining_life {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:库房编号
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? warehosue_id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:库位编号
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? location_id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:备注
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? remark {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:创建用户
|
||
/// Default:NULL::character varying
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? create_id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:创建时间
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public DateTime? create_time {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 string? extras {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:模穴数
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public int? mold_cavity {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:模具型号
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
public string? mold_type_code {get;set;}
|
||
|
||
}
|
||
}
|