12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class PosterConfigs
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; private set; }
- public DateTime UpdateTime { get; set; }
- public bool IsDeleted { get; set; }
- public string Name { get; set; }
- public string ServiceUrl { get; set; }
- public PosterWebInterfaceType InterfaceType { get; set; }
- public bool NeedParsePatientId { get; set; }
- public int Timeout { get; set; }
- public PosterImageFormat ImageFormat { get; set; }
- public IList<string> Terminals { get; set; }
- public IList<string> Organizations { get; set; }
- public AdminInfo CreateAdmin { get; set; }
- public string Template { get; set; }
- }
- public enum PosterImageFormat
- {
- Png,
- Jpeg,
- Bmp,
- Gif
- }
- public enum PosterWebInterfaceType
- {
- ChengZe,
- Garea,
- YunZhen,
- JinYiQiao,
- WeiYi,
- BJAid
- }
- }
|