42 lines
1.2 KiB
C#
42 lines
1.2 KiB
C#
namespace PARR.Domain.Constants
|
||
{
|
||
/// <summary>
|
||
/// Константы имен схем БД
|
||
/// </summary>
|
||
public class DatabaseSchemas
|
||
{
|
||
/// <summary>
|
||
/// Хранение ЭК с компонентным составом, РГ, Типы, С/н, ip, отвтетственные (не пишем шаблоны, расписания)
|
||
/// </summary>
|
||
public const string Unit = "unit";
|
||
|
||
|
||
/// <summary>
|
||
/// Хранение информации о видах работ, критериях выборки подходящих под работы ЭК и т.д.
|
||
/// </summary>
|
||
public const string Job = "job";
|
||
|
||
/// <summary>
|
||
/// Группы работ
|
||
/// </summary>
|
||
public const string JobGroup = "jobGroup";
|
||
|
||
/// <summary>
|
||
/// Расписание регламентных работ
|
||
/// </summary>
|
||
public const string Schedule = "schedule";
|
||
|
||
|
||
/// <summary>
|
||
/// Управление очередями
|
||
/// </summary>
|
||
public const string Task = "task";
|
||
|
||
|
||
/// <summary>
|
||
/// Робот
|
||
/// </summary>
|
||
public const string Robot = "robot";
|
||
}
|
||
}
|