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.
|
|
|
|
|
#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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|