/****************************** * 说明:自动更新相关常量定义 * 创建人:龚宇超 * 创建日期:2018-02-09 * 修改人: * 修改日期: * 修改备注: * 版本:1.0.0.0 ******************************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Lskj.AutoUpdate { /// /// 自动更新相关常量定义 /// public class ConstModel { /// /// 批量打印临时文件夹名BatchPrintFile /// public const string Batch_FOLDER_NAME = "BatchPrintFile"; /// /// 临时文件夹名TempFolder /// public const string TEMP_FOLDER_NAME = "TempFolder"; /// /// config_ /// public const string CONFIG_FILE_KEY = "config_"; /// /// AutoUpdater.config /// public const string AUTOUPDATE_CONFIG = "AutoupdateService.xml"; /// /// ERPClient /// public const string ERP_CLIENT = "ERPClient"; /// /// Ls_ERP /// public const string LS_ERP_NAME = "Ls_ERP"; /// /// Ls_ERP.exe /// public const string LS_ERP_EXE = "Ls_ERP.exe"; /// /// Ls_Mes /// public const string LS_Mes_NAME = "Ls_MES"; /// /// Ls_Mes.exe /// public const string LS_Mes_EXE = "Ls_MES.exe"; /// /// Ls_Update /// public const string LS_UPDATE_NAME = "Ls_Update"; /// /// Ls_Update.exe /// public const string LS_UPDATE_EXE = "Ls_Update.exe"; /// /// LskjCall /// public const string LS_CALL_NAME = "LskjCall"; /// /// LskjCall.exe /// public const string LS_CALL_EXE = "LskjCall.exe"; /// /// 通知程序 /// public const string Ls_Notice = "Ls_Notice"; /// /// 朗速ERP /// public const string LS_TITLE_NAME = "系统提示"; /// /// Client /// public const string CLIENT_NAME = "Client"; /// /// Client.exe /// public const string CLIENT_EXE = "Client.exe"; /// /// 软件正在更新中,是否真要放弃更新吗? /// public const string UPDATE_GIVING_UP = "软件正在更新中,是否真要放弃更新吗?"; /// /// 软件更新完成,需要重新启动,点击确定启动! /// public const string UPDATE_RESTART = "软件更新完成,需要重新启动,点击确定启动!"; /// /// 更新未能完成,如果选择继续我们将尝试重新为您更新,是否继续? /// public const string UPDATE_CONTINUE = "更新未能完成,是否继续?"; } }