Camera Information System
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
namespace Cis.Application.Cm;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Cm -> Camera mark
|
|
|
|
/// </summary>
|
|
|
|
public class CmInfo
|
|
|
|
{
|
|
|
|
#region Api Info
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Api 分组名
|
|
|
|
/// </summary>
|
|
|
|
public const string GroupName = "CameraMark";
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Api 分组排序
|
|
|
|
/// </summary>
|
|
|
|
public const int GroupOrder = 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
|
|
|
|
}
|