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; } /// /// 模具名称 /// 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 string? mold_type_code { get; set; } /// /// 关联保养项信息 /// public string item_json { get; set; } public string qrcode { get; set; } }