using Magicodes.ExporterAndImporter.Core; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 成品入库统计表 /// [SugarTable(nameof(Dt_ProInStatistics), "成品入库统计表")] public class Dt_ProInStatistics : BaseEntity { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int Id { get; set; } /// /// 仓库主键 /// [SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")] public int WarehouseId { get; set; } /// /// 产品型号 /// [ExporterHeader(DisplayName = "产品型号")] [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "产品型号")] public string ProductCode { get; set; } /// /// 产品版本 /// [ExporterHeader(DisplayName = "产品版本")] [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "产品版本")] public string ProductRev { get; set; } /// /// PCS数 /// [ExporterHeader(DisplayName = "PCS数")] [SugarColumn(IsNullable = false, ColumnDescription = "PCS数")] public float PcsQty { get; set; } /// /// 面积 /// [ExporterHeader(DisplayName = "面积(㎡)")] [SugarColumn(IsNullable = false, ColumnDescription = "面积(㎡)")] public float SquareMeter { get; set; } /// /// 备注 /// [ExporterHeader(DisplayName = "胶框号")] [SugarColumn(IsNullable = false, ColumnDescription = "备注")] public string Remark { get; set; } } }