31 lines
698 B
C#
31 lines
698 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DocTools
|
|
{
|
|
/// <summary>
|
|
/// dll库全局参数设置
|
|
/// </summary>
|
|
public static class AppConst
|
|
{
|
|
/// <summary>
|
|
/// 修订日志
|
|
/// </summary>
|
|
public const string LOG_CHAPTER_NAME = "修订日志";
|
|
|
|
/// <summary>
|
|
/// 数据库表目录
|
|
/// </summary>
|
|
public const string TABLE_CHAPTER_NAME = "数据库表目录";
|
|
|
|
|
|
/// <summary>
|
|
/// 数据库表结构
|
|
/// </summary>
|
|
public const string TABLE_STRUCTURE_CHAPTER_NAME = "数据库表结构";
|
|
}
|
|
}
|