using System; using SqlSugar; namespace SlnMesnac.Model.domain { [SugarTable("Record_MaterialInput"), TenantAttribute("mes")] public class RecordMaterialInput { /// /// 标识 /// [SugarColumn(ColumnName="obj_id" ,IsPrimaryKey = true ,IsIdentity = true )] public int obj_id { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName="equip_id" )] public string equip_id { get; set; } /// /// 料罐编号 /// [SugarColumn(ColumnName="can_number" )] public string can_number { get; set; } /// /// 设备类型 /// [SugarColumn(ColumnName="equip_type" )] public string equip_type { get; set; } /// /// 料秤类型编号 /// [SugarColumn(ColumnName="scaleNum" )] public string scaleNum { get; set; } /// /// 物料条码 /// [SugarColumn(ColumnName="material_barcode" )] public string material_barcode { get; set; } /// /// 投入数量 /// [SugarColumn(ColumnName="input_quantity" )] public int? input_quantity { get; set; } /// /// 投入重量 /// [SugarColumn(ColumnName="input_weight" )] public decimal? input_weight { get; set; } /// /// 是否余料 /// [SugarColumn(ColumnName="is_remainder" )] public bool? is_remainder { get; set; } /// /// 余料数量 /// [SugarColumn(ColumnName="remainder_quantity" )] public int? remainder_quantity { get; set; } /// /// 余料重量 /// [SugarColumn(ColumnName="remainder_weight" )] public decimal? remainder_weight { get; set; } /// /// 是否开仓:1-开仓;2-只保存 /// [SugarColumn(ColumnName="is_open" )] public int? is_open { get; set; } /// /// 投料结果:1-成功;0-失败 /// [SugarColumn(ColumnName="is_flag" )] public int? is_flag { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="remark" )] public string remark { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName="record_time" )] public DateTime? record_time { get; set; } } }