using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 模具信息表 /// [SugarTable("tool_molds")] public partial class ToolMolds : BaseEntity { public ToolMolds() { id = SnowflakeIdHelper.NextId(); } /// /// 模具编号 /// public string? mold_code { get; set; } /// /// 组织id /// public string org_id {get;set; } /// /// 模具名称 /// public string? mold_name { get; set; } /// /// 物料Id /// public string? material_id { get; set; } /// /// 设备Id /// public string? eqp_id { get; set; } /// /// 设备代码 /// public string? eqp_code { get; set; } /// /// 生产模数 /// public int? production_modulus { get; set; } /// /// 保养模次 /// public int? maintain_qty { get; set; } /// /// 磨具使用状态 /// public string? mold_status { get; set; } /// /// 班定额 /// public decimal? daily_rate { get; set; } /// /// 工时定额(H/PCS) /// public decimal? hour_norm { get; set; } /// /// 成长周期 秒 /// public decimal? growth_cycle { get; set; } /// /// 型腔数 /// public int? cavity_qty { get; set; } /// /// 模具寿命 模 /// public int? mold_life { get; set; } /// /// 模具剩余寿命 /// public string? mold_remaining_life { get; set; } /// /// 库房编号 /// public string? warehosue_id { get; set; } /// /// 库位编号 /// public string? location_id { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 有效模穴数 /// public int? mold_cavity { get; set; } /// /// 出厂模穴数 /// public int? ex_factory_mold_cavity { get; set; } /// /// 模具型号 /// public string? mold_type_code { get; set; } /// /// 关联保养项信息 /// public string item_json { get; set; } public string qrcode { get; set; } /// /// 供应商id /// public string supplier_id { get; set; } /// /// 验收时间 /// public DateTime? check_time { get; set; } /// /// 质保期开始 /// public DateTime? warranty_period_start_time { get; set; } /// /// 质保期结束 /// public DateTime? warranty_period_end_time { get; set; } /// /// 开模时间 /// public DateTime? open_time { get; set; } /// /// 模具地点 /// public string address { get; set; } /// /// 模具规格 /// public string mold_specification {get;set; } /// /// 图纸图号 /// public string url { get; set; } }