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 Terminals { get; set; } public IList 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 } }