添加不良品相关操作逻辑

This commit is contained in:
2026-02-20 10:44:52 +08:00
parent 9e096214c7
commit cd7580da43
5 changed files with 147 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace DOAN.Model.BZFM.Dto
{
/// <summary>
/// 报废审批DTO
/// 不良审批DTO
/// </summary>
public class ScrapApproveDto
{
@@ -21,4 +21,19 @@ namespace DOAN.Model.BZFM.Dto
/// </summary>
public string Approver { get; set; }
}
/// <summary>
/// 不良品归属审批
/// </summary>
public class DefectApproveDto
{
/// <summary>
/// 不良品记录ID
/// </summary>
public long Id { get; set; }
/// <summary>
/// 工单号
/// </summary>
public string Workorder { get; set; }
}
}