using Business.Domain; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.WMS { /// /// 平台规格库存对照 /// [Table("WMS_PlatformSpecificationComparison")] [Comment("平台规格库存对照")] public class WMS_PlatformSpecificationComparison : BaseEntity { /// /// 主键 /// /// public WMS_PlatformSpecificationComparison(long Id) : base(Id) { } /// /// 标准规格型号 /// [Comment("标准规格型号")] public string StandardSpecifications { get; set; } /// /// 海王规格型号 /// [Comment("海王规格型号")] public string HWSpecificationModel { get; set; } /// /// 国科规格型号 /// [Comment("国科规格型号")] public string GKSpecificationModel { get; set; } /// /// 库存型号 /// public string Type { get; set; } } }