Quellcode durchsuchen

移除不必要的实体

Murphy vor 2 Jahren
Ursprung
Commit
36d6daa883

+ 0 - 49
MicroServices/Business/Bussiness.Model/WMS/PlatformInventory.cs

@@ -1,49 +0,0 @@
-using Business.Core.Attributes;
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.WMS
-{
-    /// <summary>
-    /// 平台规格库存对照
-    /// </summary>
-    [Comment("平台规格库存对照")]
-    public class PlatformInventory : BaseEntity
-    {
-        /// <summary>
-        /// 仓库
-        /// </summary>
-        [Comment("仓库")]
-        public string? Location { get; set; }
-        /// <summary>
-        /// 规格或货品编码
-        /// </summary>
-        [Comment("规格或货品编码")]
-        public string? SpecificationModel { get; set; }
-        /// <summary>
-        /// 批号
-        /// </summary>
-        [Comment("批号")]
-        public string? BatchNumber { get; set; }
-        /// <summary>
-        /// 数量
-        /// </summary>
-        [Comment("数量")]
-        public decimal? InventoryQuantity { get; set; }
-        /// <summary>
-        /// 有效期
-        /// </summary>
-        [Comment("有效期")]
-        public decimal? PeriodOfValidity { get; set; }
-        /// <summary>
-        /// 编码
-        /// </summary>
-        [Comment("编码")]
-        public string? Code { get; set; }
-    }
-}

+ 0 - 45
MicroServices/Business/Bussiness.Model/WMS/PlatformSpecificationComparison.cs

@@ -1,45 +0,0 @@
-using Business.Core.Attributes;
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.WMS
-{
-    /// <summary>
-    /// 平台规格库存对照
-    /// </summary>
-    [Comment("平台规格库存对照")]
-    public class PlatformSpecificationComparison : BaseEntity
-    {
-        /// <summary>
-        /// 主键
-        /// </summary>
-        /// <param name="Id"></param>
-        public PlatformSpecificationComparison(long Id) : base(Id)
-        {
-        }
-        /// <summary>
-        /// 标准规格型号
-        /// </summary>
-        [Comment("标准规格型号")]
-        public string? StandardSpecifications { get; set; }
-        /// <summary>
-        /// 海王规格型号
-        /// </summary>
-        [Comment("海王规格型号")]
-        public string? HWSpecificationModel { get; set; }
-        /// <summary>
-        /// 国科规格型号
-        /// </summary>
-        [Comment("国科规格型号")]
-        public string? GKSpecificationModel { get; set; }
-        /// <summary>
-        /// 库存型号
-        /// </summary>
-        public string? Type { get; set; }
-    }
-}