PosterConfigs.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class PosterConfigs
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; private set; }
  12. public DateTime UpdateTime { get; set; }
  13. public bool IsDeleted { get; set; }
  14. public string Name { get; set; }
  15. public string ServiceUrl { get; set; }
  16. public PosterWebInterfaceType InterfaceType { get; set; }
  17. public bool NeedParsePatientId { get; set; }
  18. public int Timeout { get; set; }
  19. public PosterImageFormat ImageFormat { get; set; }
  20. public IList<string> Terminals { get; set; }
  21. public IList<string> Organizations { get; set; }
  22. public AdminInfo CreateAdmin { get; set; }
  23. public string Template { get; set; }
  24. }
  25. public enum PosterImageFormat
  26. {
  27. Png,
  28. Jpeg,
  29. Bmp,
  30. Gif
  31. }
  32. public enum PosterWebInterfaceType
  33. {
  34. ChengZe,
  35. Garea,
  36. YunZhen,
  37. JinYiQiao,
  38. WeiYi,
  39. BJAid
  40. }
  41. }