generated from wenjy/Sln.Iot
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.
63 lines
1.3 KiB
C#
63 lines
1.3 KiB
C#
namespace Sln.Iot.Model.api.Recipes.BasicRecipeVisibility.RecipeModified.@enum
|
|
{
|
|
/// <summary>
|
|
/// 配方修改原因枚举
|
|
/// </summary>
|
|
public enum RecipeModificationReason
|
|
{
|
|
/// <summary>
|
|
/// 未注明
|
|
/// </summary>
|
|
NotSpecified = 0,
|
|
|
|
/// <summary>
|
|
/// 新配方
|
|
/// </summary>
|
|
NewRecipe = 1,
|
|
|
|
/// <summary>
|
|
/// 新版本
|
|
/// </summary>
|
|
NewRevision = 2,
|
|
|
|
/// <summary>
|
|
/// 产品几何结构改变
|
|
/// </summary>
|
|
ProductGeometryChange = 3,
|
|
|
|
/// <summary>
|
|
/// BOM表更新
|
|
/// </summary>
|
|
BOMUpdate = 4,
|
|
|
|
/// <summary>
|
|
/// 点位校正
|
|
/// </summary>
|
|
PositionalCorrection = 5,
|
|
|
|
/// <summary>
|
|
/// 方向校正
|
|
/// </summary>
|
|
OrientationCorrection = 6,
|
|
|
|
/// <summary>
|
|
/// 视觉分析需求校正
|
|
/// </summary>
|
|
VisionAnalysisCorrection = 7,
|
|
|
|
/// <summary>
|
|
/// 配方删除
|
|
/// </summary>
|
|
RecipeDeletion = 8,
|
|
|
|
/// <summary>
|
|
/// 工艺优化
|
|
/// </summary>
|
|
ProcessOptimization = 9,
|
|
|
|
/// <summary>
|
|
/// 质量问题修复
|
|
/// </summary>
|
|
QualityIssueFix = 10
|
|
}
|
|
} |