using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.BasicData.Entities; /// /// 工序资料 /// [SugarTable("bas_process")] public partial class BasProcess : BaseEntity { public BasProcess() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 工序代码 /// public string? process_code { get; set; } /// /// 工序名称 /// public string? process_name { get; set; } /// /// 数据收集方式 /// public string? process_collection { get; set; } /// /// 工序类型 /// public string? process_type { get; set; } /// /// 工序属性 /// public string? process_attribute { get; set; } /// /// 必过工序 /// public string? must_pass { get; set; } /// /// 处理时间 /// public string? process_time { get; set; } /// /// 时间单位 /// public string? time_unit { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳(用于并发控制) /// public string? timestamp { 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 string? status { get; set; } /// /// 单次扫码 /// public string? single_scan_type { get; set; } /// /// 工位 /// public string? station { get; set; } /// /// 一码到底 /// public string? only_scan_type { get; set; } /// /// 次品项列表 /// public string? defective_items { get; set; } /// /// 用料追溯关系 /// public string? material_traced_back_relationship { get; set; } /// /// 不合格品投产 /// public string? defective_products_put_into_production { get; set; } /// /// 报告模板 /// public string? report_template { get; set; } /// /// 描述 /// public string? descrip { get; set; } /// /// 附件 /// public string? attachment { get; set; } /// /// 扩展字段2 /// public string? extras2 { get; set; } /// /// 扩展字段3 /// public string? extras3 { get; set; } }