质量控制

This commit is contained in:
quowingwang 2025-11-29 15:21:55 +08:00
parent 861b2f8e93
commit 1d91e136e5
4 changed files with 2 additions and 8 deletions

View File

@ -10,6 +10,7 @@ namespace RIZO.Admin.WebApi.Controllers.Mes.ProductionPreparation
/// 质量控制主表
/// </summary>
[Route("mes/QualityControl")]
[AllowAnonymous]
public class QualityControlController : BaseController
{
/// <summary>

View File

@ -10,6 +10,7 @@ namespace RIZO.Admin.WebApi.Controllers.Mes.ProductionPreparation
/// 质量控制从表(存储具体检查参数明细)
/// </summary>
[Route("mes/QualityControlDetail")]
[AllowAnonymous]
public class QualityControlDetailController : BaseController
{
/// <summary>

View File

@ -25,8 +25,6 @@ namespace RIZO.Model.Mes.Dto.ProductionPreparation
public string LineCode { get; set; }
public string WorkOrderNo { get; set; }
public int? CheckResult { get; set; }
public DateTime? CheckTime { get; set; }

View File

@ -37,12 +37,6 @@ namespace RIZO.Model.Mes.ProductionPreparation
[SugarColumn(ColumnName = "line_code")]
public string LineCode { get; set; }
/// <summary>
/// 关联工单编号(可选)
/// </summary>
[SugarColumn(ColumnName = "work_order_no")]
public string WorkOrderNo { get; set; }
/// <summary>
/// 检查结果0=不合格1=合格)
/// </summary>