using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TeamAAS_VP.Attributes;
using TeamAAS_VP.Resources.Languages;
using TeamAAS_VP.ValueConverter;
namespace TeamAAS_VP.Enums
{
///
/// 流程存图路径模式
///
[TypeConverter(typeof(EnumLocalizationConverter))]
public enum ProcedureSaveImagePathModel
{
///
/// 年月/日/时间
///
[Description("..//yyyy-MM//MM-dd//yyyy-MM-dd HH_mm_ss.png")]
[Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Time", ResourceType = typeof(Lang))]
Month_Day_Time = 0,
///
/// 年月/日/okng/时间
///
[Description("..//yyyy-MM//MM-dd//OK&NG//yyyy-MM-dd HH_mm_ss.png")]
[Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_OkNG_Time", ResourceType = typeof(Lang))]
Month_Day_OkNG_Time = 1,
///
/// 年月/日/ok/时间
///
[Description("..//yyyy-MM//MM-dd//OK//yyyy-MM-dd HH_mm_ss.png")]
[Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Ok_Time", ResourceType = typeof(Lang))]
Month_Day_Ok_Time = 2,
///
/// 年月/日/ng/时间
///
[Description("..//yyyy-MM//MM-dd//NG//yyyy-MM-dd HH_mm_ss.png")]
[Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Ng_Time", ResourceType = typeof(Lang))]
Month_Day_Ng_Time = 3,
//年月/日/配方名/产品SN/产品SN+时间
[Description("..//yyyy-MM//MM-dd//产品配方名//产品SN//产品SN-yyyy-MM-dd HH_mm_ss.png")]
[Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Formula_ProductSN_Time", ResourceType = typeof(Lang))]
Month_Day_Formula_ProductSN_Time = 4
}
}