using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.cp { [Tenant("cp")] [SugarTable("bill_feedback_push", "反馈推送信息表")] public class cpBillFeedbackPush : BaseModel { /// /// 单号 /// [SugarColumn(ColumnName = "bill_code", ColumnDataType = "nvarchar", Length = 50)] public string BillCode { get; set; } /// /// RFID值 /// [SugarColumn(ColumnName = "rfid", ColumnDataType = "nvarchar", Length = 50)] public string RFID { get; set; } /// /// 条码 /// [SugarColumn(ColumnName = "rod_bar", ColumnDataType = "nvarchar", Length = 50)] public string RodBar { get; set; } /// /// 材料号 /// [SugarColumn(ColumnName = "mat_barcode", ColumnDataType = "nvarchar", Length = 50)] public string MatBarCode { get; set; } /// /// 工字轮条码 /// [SugarColumn(ColumnName = "spool_code", ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string SpoolCode { get; set; } /// /// 仓库编码 /// [SugarColumn(ColumnName = "ware_code", ColumnDataType = "nvarchar", Length = 50)] public string WareCode { get; set; } /// /// 仓库名称 /// [SugarColumn(ColumnName = "ware_name", ColumnDataType = "nvarchar", Length = 50)] public string WareName { get; set; } /// /// 货位编码 /// [SugarColumn(ColumnName = "loc_code", ColumnDataType = "nvarchar", Length = 50)] public string LocCode { get; set; } /// /// 炉号 /// [SugarColumn(ColumnName = "boiler_no", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string BoilerNo { get; set; } /// /// 包号 /// [SugarColumn(ColumnName = "pack_no", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string PackNo { get; set; } /// /// 生产批号 /// [SugarColumn(ColumnName = "batch", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string Batch { get; set; } /// /// 改判结果 /// [SugarColumn(ColumnName = "res_state", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string ResState { get; set; } /// /// 原因 /// [SugarColumn(ColumnName = "res_desc", ColumnDataType = "nvarchar", Length = 500, IsNullable = true)] public string ResDesc { get; set; } /// /// 物料编码 /// [SugarColumn(ColumnName = "mat_code", ColumnDataType = "nvarchar", Length = 50, IsNullable = true)] public string MatCode { get; set; } /// /// 总重量 /// [SugarColumn(ColumnName = "tol_weight", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal TolWeight { get; set; } /// /// 净重 /// [SugarColumn(ColumnName = "net_weight", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal NetWeight { get; set; } /// /// 皮重 /// [SugarColumn(ColumnName = "tare_weight", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal TareWeight { get; set; } /// /// 过账凭证号 /// [SugarColumn(ColumnName = "req_id", ColumnDataType = "nvarchar", Length = 100)] public string ReqId { get; set; } /// /// 接口编码 /// [SugarColumn(ColumnName = "api_code", ColumnDataType = "nvarchar", Length = 100)] public string ApiCode { get; set; } /// /// 接口名称 /// [SugarColumn(ColumnName = "api_name", ColumnDataType = "nvarchar", Length = 100)] public string ApiName { get; set; } /// /// 推送次数 /// [SugarColumn(ColumnName = "post_num")] public int PostNum { get; set; } /// /// 推送结果 /// [SugarColumn(ColumnName = "post_result")] public int PostResult { get; set; } } }