You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
2.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* 版权所有 (c) 2025 WenJY 保留所有权利。
* CLR版本4.0.30319.42000
* 机器名称Mr.Wen's MacBook Pro
* 命名空间Sln.lmm.Collection.Model.Recipes.BasicRecipeVisibility
* 唯一标识F43B2069-4410-4CFC-99BB-4B55BE83D769
*
* 创建者WenJY
* 电子邮箱:
* 创建时间2025-10-16 14:18:36
* 版本V1.0.0
* 描述:
*
*--------------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
*
* 版本V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.Common.Operator;
using Sln.Iot.Model.api.Common.WorkOrderIdentifier;
using Sln.Iot.Model.api.Recipes.BasicRecipeVisibility.RecipeModified.@enum;
namespace Sln.Iot.Model.api.Recipes.BasicRecipeVisibility.RecipeModified
{
/// <summary>
/// 5.4.3.1.2 - 配方修改事件
/// 当设备的配方进行任何修改时,需自动上传此消息给上端系统进行上报
/// </summary>
public class RecipeModified
{
/// <summary>
/// 配方名称
/// </summary>
public string RecipeName { get; set; }
/// <summary>
/// 配方版本
/// </summary>
public string Revision { get; set; }
/// <summary>
/// 修改配方的操作者信息
/// </summary>
public Operator ModifiedBy { get; set; }
/// <summary>
/// 修改配方的注记
/// </summary>
public string Notes { get; set; }
/// <summary>
/// 更换配方的原因
/// 0=未注明 1=新配方 2=新版本 3=产品几何结构改变 4=BOM表更新
/// 5=点位校正 6=方向校正 7=视觉分析需求校正 8=配方删除
/// </summary>
public RecipeModificationReason Reason { get; set; }
/// <summary>
/// 工单信息
/// </summary>
public WorkOrderIdentifier WorkOrderIdentifier { get; set; }
}
}