Add initial hcs database schema creation

This commit is contained in:
2025-10-22 16:42:00 +09:00
parent 77626a8e52
commit 37cf856685
38 changed files with 302 additions and 336 deletions

View File

@ -1,5 +1,4 @@
using Hcs.Broker.Api.Registry;
using Hcs.Broker.Api.Type;
using Hcs.Broker.Api.Type;
namespace Hcs.Broker.Api.Payload.Bills
{

View File

@ -1,6 +1,4 @@
using Hcs.Broker.Api.Registry;
namespace Hcs.Broker.Api.Payload.DeviceMetering
namespace Hcs.Broker.Api.Payload.DeviceMetering
{
// http://open-gkh.ru/DeviceMetering/exportMeteringDeviceHistoryRequest.html
public class ExportMeteringDeviceHistoryPayload

View File

@ -1,5 +1,4 @@
using Hcs.Broker.Api.Registry;
using Hcs.Service.Async.HouseManagement;
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Broker.Api.Payload.HouseManagement
{

View File

@ -1,5 +1,4 @@
using Hcs.Broker.Api.Registry;
using Hcs.Service.Async.HouseManagement;
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Broker.Api.Payload.HouseManagement
{

View File

@ -0,0 +1,9 @@
namespace Hcs.Broker.Api.Payload
{
public class RegistryElement(string code, string guid)
{
public string Code { get; } = code;
public string GUID { get; } = guid;
}
}