Bladeren bron

移出不用model项目

heteng 2 jaren geleden
bovenliggende
commit
22cc37169b

+ 0 - 67
MicroServices/Business/Bussiness.Model/SaleFcst/DomesticTerminalFcst.cs

@@ -1,67 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.Production
-{
-    /// <summary>
-    /// 国内终端预测表
-    /// </summary>
-    [Comment("国内终端预测表")]
-    [Index(nameof(Year), nameof(Month), nameof(ProdLine), nameof(Model),nameof(TypeEnum),nameof(PlanMonth),nameof(tenant_id), nameof(company_id),nameof(factory_id), IsUnique = true)]
-    public class DomesticTerminalFcst:BaseEntity
-    {
-        /// <summary>
-        /// 年
-        /// </summary>
-        [Comment("年")]
-        public int? Year { get; set; }
-
-        /// <summary>
-        /// 月
-        /// </summary>
-        [Comment("月")]
-        public int? Month { get; set; }
-
-        /// <summary>
-        /// 产品线
-        /// </summary>
-        [Comment("产品线")]
-        public string? ProdLine { get; set; }
-
-        /// <summary>
-        /// 规格型号
-        /// </summary>
-        [Comment("规格型号")]
-        public string? Model { get; set; }
-
-        /// <summary>
-        /// 类别枚举:1-需求总计;2-T1需求总计;3-T2需求总计;4-海王;5-国科
-        /// </summary>
-        [Comment("类别枚举")]
-        public int TypeEnum { get; set; }
-
-        /// <summary>
-        /// 类别名称
-        /// </summary>
-        [Comment("类别名称")]
-        public string? TypeName { get; set; }
-
-        /// <summary>
-        /// 计划年月
-        /// </summary>
-        [Comment("计划年月")]
-        public string? PlanMonth { get; set; }
-
-        /// <summary>
-        /// 产品数量
-        /// </summary>
-        [Comment("产品数量")]
-        public decimal? Qty { get; set; }
-    }
-}

+ 0 - 61
MicroServices/Business/Bussiness.Model/SaleFcst/OverseasSaleFcst.cs

@@ -1,61 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.Production
-{
-    /// <summary>
-    /// 海外销售预测表
-    /// </summary>
-    [Comment("海外销售预测表")]
-    [Index(nameof(Year), nameof(Month), nameof(ProdLine), nameof(Model),nameof(Language),nameof(PlanMonth),nameof(tenant_id),nameof(company_id), nameof(factory_id), IsUnique = true)]
-    public class OverseasSaleFcst : BaseEntity
-    {
-        /// <summary>
-        /// 年
-        /// </summary>
-        [Comment("年")]
-        public int? Year { get; set; }
-
-        /// <summary>
-        /// 月
-        /// </summary>
-        [Comment("月")]
-        public int? Month { get; set; }
-
-        /// <summary>
-        /// 产品线
-        /// </summary>
-        [Comment("产品线")]
-        public string? ProdLine { get; set; }
-
-        /// <summary>
-        /// 规格型号
-        /// </summary>
-        [Comment("规格型号")]
-        public string? Model { get; set; }
-
-        /// <summary>
-        /// 语种
-        /// </summary>
-        [Comment("语种")]
-        public string? Language { get; set; }
-
-        /// <summary>
-        /// 计划年月
-        /// </summary>
-        [Comment("计划年月")]
-        public string? PlanMonth { get; set; }
-
-        /// <summary>
-        /// 产品数量
-        /// </summary>
-        [Comment("产品数量")]
-        public decimal? Qty { get; set; }
-    }
-}

+ 0 - 61
MicroServices/Business/Bussiness.Model/SaleFcst/PlatformFcstCollect.cs

@@ -1,61 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.Production
-{
-    /// <summary>
-    /// 平台预测收集表
-    /// </summary>
-    [Comment("平台预测收集表")]
-    [Index(nameof(Year), nameof(Month), nameof(Platform), nameof(Model),nameof(ProdType),nameof(PlanMonth),nameof(tenant_id),nameof(company_id),nameof(factory_id), IsUnique = true)]
-    public class PlatformFcstCollect : BaseEntity
-    {
-        /// <summary>
-        /// 年
-        /// </summary>
-        [Comment("年")]
-        public int? Year { get; set; }
-
-        /// <summary>
-        /// 月
-        /// </summary>
-        [Comment("月")]
-        public int? Month { get; set; }
-
-        /// <summary>
-        /// 平台
-        /// </summary>
-        [Comment("平台")]
-        public string? Platform { get; set; }
-
-        /// <summary>
-        /// 规格型号
-        /// </summary>
-        [Comment("规格型号")]
-        public string? Model { get; set; }
-
-        /// <summary>
-        /// 产品类型
-        /// </summary>
-        [Comment("产品类型")]
-        public string? ProdType { get; set; }
-
-        /// <summary>
-        /// 计划年月
-        /// </summary>
-        [Comment("计划年月")]
-        public string? PlanMonth { get; set; }
-
-        /// <summary>
-        /// 产品数量
-        /// </summary>
-        [Comment("产品数量")]
-        public decimal? Qty { get; set; }
-    }
-}

+ 0 - 32
MicroServices/Business/Bussiness.Model/SaleFcst/StandardItemModelSet.cs

@@ -1,32 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-using System.Drawing;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.SaleFcst
-{
-    /// <summary>
-    /// 标准物料规格型号设置表
-    /// </summary>
-    [Comment("标准物料规格型号设置表")]
-    [Index(nameof(Model), nameof(tenant_id), nameof(factory_id), IsUnique = true)]
-    public class StandardItemModelSet:BaseEntity
-    {
-        /// <summary>
-        /// 规格型号
-        /// </summary>
-        [Comment("规格型号")]
-        public string? Model { get; set; }
-
-        /// <summary>
-        /// 物料编码
-        /// </summary>
-        [Comment("物料编码")]
-        public string? ItemNumber { get; set; }
-    }
-}

+ 0 - 67
MicroServices/Business/Bussiness.Model/SaleFcst/YearDemandManagement.cs

@@ -1,67 +0,0 @@
-using Microsoft.EntityFrameworkCore;
-using System;
-using System.Collections.Generic;
-using System.ComponentModel.DataAnnotations.Schema;
-using System.ComponentModel.DataAnnotations;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace Business.Model.Production
-{
-    /// <summary>
-    /// 年度生产需求管理表
-    /// </summary>
-    [Comment("年度生产需求管理表")]
-    [Index(nameof(Year), nameof(Area), nameof(ProdLine),nameof(ProdRange), nameof(Line),nameof(Model),nameof(PlanMonth),nameof(tenant_id), nameof(company_id),nameof(factory_id), IsUnique = true)]
-    public class YearDemandManagement:BaseEntity
-    {
-        /// <summary>
-        /// 年
-        /// </summary>
-        [Comment("年")]
-        public int? Year { get; set; }
-
-        /// <summary>
-        /// 区域
-        /// </summary>
-        [Comment("区域")]
-        public string? Area { get; set; }
-
-        /// <summary>
-        /// 产品线
-        /// </summary>
-        [Comment("产品线")]
-        public string? ProdLine { get; set; }
-
-        /// <summary>
-        /// 产品系列
-        /// </summary>
-        [Comment("产品系列")]
-        public string? ProdRange { get; set; }
-
-        /// <summary>
-        /// 车间线体
-        /// </summary>
-        [Comment("车间线体")]
-        public string? Line { get; set; }
-
-        /// <summary>
-        /// 规格型号
-        /// </summary>
-        [Comment("规格型号")]
-        public string? Model { get; set; }
-
-        /// <summary>
-        /// 计划年月
-        /// </summary>
-        [Comment("计划年月")]
-        public string? PlanMonth { get; set; }
-
-        /// <summary>
-        /// 产品数量
-        /// </summary>
-        [Comment("产品数量")]
-        public decimal? Qty { get; set; }
-    }
-}

+ 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; }
-    }
-}