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