namespace Tnb.ProductionMgr.Entities.Dto.PrdManage { public class PrdRawMaterialBarcodeListDto { public string id { get; set; } /// /// 单据编号 /// public string bill_code { get; set; } = string.Empty; /// /// 料仓id /// public string equip_id { get; set; } = string.Empty; /// /// 机台id /// public string equip_ids { get; set; } = string.Empty; /// /// 截料阀 /// public string stop_valve { get; set; } /// /// 物料id /// public string? material_id { get; set; } /// /// 1 料仓原料条码 2 机台原料 /// public string type { get; set; } /// /// 是否更新 /// public string is_update { get; set; } /// /// 吸料完成 /// public string absorb_material_finish { get; set; } /// /// 管道状态 /// public string piping_status { get; set; } /// /// 开始时间 /// public string start_time { get; set; } /// /// 结束时间 /// public string end_time { 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? org_id { get; set; } public string equip_id_id { get; set; } public string material_id_id { get; set; } public string f_flowid { get; set; } } }