ProcedureSaveImagePathModel.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using TeamAAS_VP.Attributes;
  8. using TeamAAS_VP.Resources.Languages;
  9. using TeamAAS_VP.ValueConverter;
  10. namespace TeamAAS_VP.Enums
  11. {
  12. /// <summary>
  13. /// 流程存图路径模式
  14. /// </summary>
  15. [TypeConverter(typeof(EnumLocalizationConverter))]
  16. public enum ProcedureSaveImagePathModel
  17. {
  18. /// <summary>
  19. /// 年月/日/时间
  20. /// </summary>
  21. [Description("..//yyyy-MM//MM-dd//yyyy-MM-dd HH_mm_ss.png")]
  22. [Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Time", ResourceType = typeof(Lang))]
  23. Month_Day_Time = 0,
  24. /// <summary>
  25. /// 年月/日/okng/时间
  26. /// </summary>
  27. [Description("..//yyyy-MM//MM-dd//OK&NG//yyyy-MM-dd HH_mm_ss.png")]
  28. [Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_OkNG_Time", ResourceType = typeof(Lang))]
  29. Month_Day_OkNG_Time = 1,
  30. /// <summary>
  31. /// 年月/日/ok/时间
  32. /// </summary>
  33. [Description("..//yyyy-MM//MM-dd//OK//yyyy-MM-dd HH_mm_ss.png")]
  34. [Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Ok_Time", ResourceType = typeof(Lang))]
  35. Month_Day_Ok_Time = 2,
  36. /// <summary>
  37. /// 年月/日/ng/时间
  38. /// </summary>
  39. [Description("..//yyyy-MM//MM-dd//NG//yyyy-MM-dd HH_mm_ss.png")]
  40. [Localization(ResourceName = "ProcedureSaveImagePathModel_Month_Day_Ng_Time", ResourceType = typeof(Lang))]
  41. Month_Day_Ng_Time = 3,
  42. }
  43. }