|
|
|
namespace Cis.Application.Cm;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Cm -> Camera mark
|
|
|
|
/// </summary>
|
|
|
|
public class CmInfo
|
|
|
|
{
|
|
|
|
#region Api Info
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Api 分组名
|
|
|
|
/// </summary>
|
|
|
|
public const string GroupName = "CameraMark";
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkGroup Api 分组排序
|
|
|
|
/// </summary>
|
|
|
|
public const int CmMarkGroupGroupOrder = 100;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkLabel Api 分组排序
|
|
|
|
/// </summary>
|
|
|
|
public const int CmMarkLabelGroupOrder = 100;
|
|
|
|
|
|
|
|
#endregion Api Info
|
|
|
|
|
|
|
|
#region Database Info
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 数据库标识
|
|
|
|
/// </summary>
|
|
|
|
public const string DbName = SqlSugarConst.DefaultConfigId;
|
|
|
|
|
|
|
|
#endregion Database Info
|
|
|
|
|
|
|
|
#region Table Info
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkGroup 表名
|
|
|
|
/// </summary>
|
|
|
|
public const string CmMarkGroupTbName = "cm_mark_group";
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkGroup 表描述
|
|
|
|
/// </summary>
|
|
|
|
public const string CmMarkGroupTbDesc = "标记分组表";
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkLabel 表名
|
|
|
|
/// </summary>
|
|
|
|
public const string CmMarkLabelTbName = "cm_mark_label";
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// CmMarkLabel 表描述
|
|
|
|
/// </summary>
|
|
|
|
public const string CmMarkLabelTbDesc = "标签表";
|
|
|
|
|
|
|
|
#endregion Table Info
|
|
|
|
}
|