feat(api): Реализованы JobController, JobGroupController

This commit is contained in:
Mikhail Kuznetsov
2025-07-01 17:20:48 +10:00
parent f429b70410
commit 5bbf2e2db5
16 changed files with 855 additions and 44 deletions

View File

@@ -377,6 +377,17 @@
public const string getParam = "{id}";
}
public static class JobGroup
{
public const string GetAll = Base + "/job-groups/";
public const string Get = Base + "/job-groups/" + getParam;
public const string Delete = Base + "/job-groups/" + getParam;
public const string Create = Base + "/job-groups/";
public const string Update = Base + "/job-groups/" + getParam;
public const string getParam = "{id}";
}
public static class JobAutoControl
{