Pārlūkot izejas kodu

增加主键Id

shengtang
747575620@qq.com pirms 1 gada
vecāks
revīzija
c984e2e669
6 mainītis faili ar 93 papildinājumiem un 8 dzēšanām
  1. +50
    -0
      backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml
  2. +5
    -1
      backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs
  3. +5
    -1
      backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs
  4. +5
    -1
      backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs
  5. +5
    -0
      backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs
  6. +23
    -5
      backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs

+ 50
- 0
backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml Parādīt failu

@@ -1166,6 +1166,12 @@
输出
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.CraftsInfoOutput.Id">
<summary>
主键
</summary>
<example></example>
</member>
<member name="T:BPA.MES.Base.Application.Services.CraftsStepsDto">
<summary>
名 称 :产线管理
@@ -2126,6 +2132,12 @@
输出
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.MaterialsInfoOutput.Id">
<summary>
主键
</summary>
<example></example>
</member>
<member name="T:BPA.MES.Base.Application.Services.IMaterialsInfoService">
<summary>
名 称 :物料服务
@@ -2295,6 +2307,12 @@
输出
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.GroupInfoOutput.Id">
<summary>
主键
</summary>
<example></example>
</member>
<member name="T:BPA.MES.Base.Application.Services.ProductLineDto">
<summary>
名 称 :产线管理
@@ -2650,6 +2668,12 @@
输出
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipeMaterialOutput.Id">
<summary>
主键
</summary>
<example></example>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipeMaterialOutput.RecipesName">
<summary>
配方名称
@@ -2673,6 +2697,16 @@
描 述 :
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesInfoDto.Name">
<summary>
名称
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesInfoDto.Code">
<summary>
自定义编码
</summary>
</member>
<member name="T:BPA.MES.Base.Application.Services.RecipesInfoAddInput">
<summary>
增加
@@ -2683,6 +2717,11 @@
更新
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesInfoUpdateInput.Id">
<summary>
主键
</summary>
</member>
<member name="T:BPA.MES.Base.Application.Services.RecipesInfoDelInput">
<summary>
删除
@@ -2713,11 +2752,22 @@
输出
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesInfoOutput.Id">
<summary>
主键
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesInfoOutput.GroupId">
<summary>
分组Id
</summary>
</member>
<member name="P:BPA.MES.Base.Application.Services.RecipesGroupInput.Id">
<summary>
主键
</summary>
<example></example>
</member>
<member name="T:BPA.MES.Base.Application.Services.IRecipeMaterialService">
<summary>
名 称 :配方物料服务


+ 5
- 1
backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs Parādīt failu

@@ -63,6 +63,10 @@
/// </summary>
public class CraftsInfoOutput : CraftsInfoDto
{

/// <summary>
/// 主键
/// </summary>
/// <example></example>
public string Id { get; set; }
}
}

+ 5
- 1
backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs Parādīt failu

@@ -79,6 +79,10 @@
/// </summary>
public class MaterialsInfoOutput : MaterialsInfoDto
{

/// <summary>
/// 主键
/// </summary>
/// <example></example>
public string Id { get; set; }
}
}

+ 5
- 1
backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs Parādīt failu

@@ -59,6 +59,10 @@
/// </summary>
public class GroupInfoOutput : GroupInfoDto
{

/// <summary>
/// 主键
/// </summary>
/// <example></example>
public string Id { get; set; }
}
}

+ 5
- 0
backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs Parādīt failu

@@ -75,6 +75,11 @@
/// </summary>
public class RecipeMaterialOutput : RecipeMaterialDto
{
/// <summary>
/// 主键
/// </summary>
/// <example></example>
public string Id { get; set; }
/// <summary>
/// 配方名称
/// </summary>


+ 23
- 5
backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs Parādīt failu

@@ -6,9 +6,16 @@
/// 创建时间 :2023/3/2 16:12:06
/// 描 述 :
/// </summary>
public class RecipesInfoDto : RecipesInfoEntity
public class RecipesInfoDto
{

/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 自定义编码
/// </summary>
public string Code { get; set; }
}
/// <summary>
/// 增加
@@ -22,7 +29,10 @@
/// </summary>
public class RecipesInfoUpdateInput : RecipesInfoDto
{

/// <summary>
/// 主键
/// </summary>
public string Id { get; set; }
}
/// <summary>
/// 删除
@@ -53,14 +63,22 @@
/// </summary>
public class RecipesInfoOutput : RecipesInfoDto
{
/// <summary>
/// 主键
/// </summary>
public string Id { get; set; }
/// <summary>
/// 分组Id
/// </summary>
public string GroupId { get; set; }
public string GroupId { get; set; }
}

public class RecipesGroupInput : RecipesGroupEntity
{

/// <summary>
/// 主键
/// </summary>
/// <example></example>
public string Id { get; set; }
}
}

Notiek ielāde…
Atcelt
Saglabāt