using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiobon.PublishHelper { /// /// 操作记录 /// [Serializable] public class OprateLog { /// /// 上一次选择的服务器 /// public string ServerName { get; set; } /// /// 上一次选择的医院 /// public string HospitalName { get; set; } /// /// webapi /// public bool Webapi { get; set; } /// /// hfs /// public bool Hfs { get; set; } /// /// rtm /// public bool Rtm { get; set; } /// /// job /// public bool Job { get; set; } /// /// web /// public bool Web { get; set; } /// /// pad /// public bool Pad { get; set; } /// /// remove /// public bool Remove { get; set; } /// /// build /// public bool Build { get; set; } /// /// 版本打包-开发服务器 /// public string PackDevIp { get; set; } /// /// 版本打包-医院 /// public string PackHospital { get; set; } /// /// 版本打包-发布服务器 /// public string PackPublishIp { get; set; } /// /// 版本打包-版本 /// public string PackVersion { get; set; } /// /// 版本打包-数据库脚本 /// public bool PackDbFile { get; set; } /// /// 版本打包-打包前先执行发布 /// public bool PackPublish { get; set; } /// /// 版本打包-Git /// public bool PackGit { get; set; } /// /// 版本打包-是否自动下载 /// public bool PackDownload { get; set; } /// /// 版本打包-是否为升级包 /// public bool PackUpgrade { get; set; } /// /// 版本打包-TS升级包 /// public bool PackUpgradeTS { get; set; } /// /// 版本打包-TS升级包项目名称 /// public string PackUpgradeTSCustom { get; set; } /// /// TS插件打包-项目地址 /// public string TSPath { get; set; } /// /// TS插件打包-版本号 /// public string TSVersion { get; set; } /// /// TS插件打包-保存位置 /// public string TSSavePath { get; set; } /// /// TS插件打包-是否自定义 /// public bool TSCustom { get; set; } /// /// TS插件打包-是否编译 /// public bool TSBuild { get; set; } /// /// TS插件打包-自定义医院 /// public string TSCustomHospitals { get; set; } } }