feat(报废管理): 实现报废单和转用单的创建与审批流程

添加报废审批DTO和供应商字段
实现创建报废单/转用单功能
新增审批和撤销报废记录接口
优化查询条件并生成唯一报废单号
This commit is contained in:
2026-01-26 17:57:18 +08:00
parent 1e7d768489
commit 722ef40fd2
8 changed files with 355 additions and 17 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.BZFM.Dto
{
/// <summary>
/// 报废审批DTO
/// </summary>
public class ScrapApproveDto
{
/// <summary>
/// 是否批准
/// </summary>
public bool IsApproved { get; set; }
/// <summary>
/// 审批人
/// </summary>
public string Approver { get; set; }
}
}