docs: 同步项目重命名后的架构文档
This commit is contained in:
@@ -76,7 +76,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/PlossRecord.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class PlossRecord
|
||||
{
|
||||
@@ -117,9 +117,9 @@ public class PlossRecord
|
||||
// Data/Configurations/PlossRecordConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class PlossRecordConfiguration : IEntityTypeConfiguration<PlossRecord>
|
||||
{
|
||||
|
||||
@@ -66,7 +66,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/QfodRecord.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class QfodRecord
|
||||
{
|
||||
@@ -93,9 +93,9 @@ public class QfodRecord
|
||||
// Data/Configurations/QfodRecordConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class QfodRecordConfiguration : IEntityTypeConfiguration<QfodRecord>
|
||||
{
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/RxType.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class RxType
|
||||
{
|
||||
@@ -58,9 +58,9 @@ public class RxType
|
||||
// Data/Configurations/RxTypeConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class RxTypeConfiguration : IEntityTypeConfiguration<RxType>
|
||||
{
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/TxHardware.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class TxHardware
|
||||
{
|
||||
@@ -49,9 +49,9 @@ public class TxHardware
|
||||
// Data/Configurations/TxHardwareConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class TxHardwareConfiguration : IEntityTypeConfiguration<TxHardware>
|
||||
{
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/TxPanel.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class TxPanel
|
||||
{
|
||||
@@ -63,9 +63,9 @@ public class TxPanel
|
||||
// Data/Configurations/TxPanelConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class TxPanelConfiguration : IEntityTypeConfiguration<TxPanel>
|
||||
{
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/TxSoftware.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class TxSoftware
|
||||
{
|
||||
@@ -49,9 +49,9 @@ public class TxSoftware
|
||||
// Data/Configurations/TxSoftwareConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class TxSoftwareConfiguration : IEntityTypeConfiguration<TxSoftware>
|
||||
{
|
||||
|
||||
@@ -75,7 +75,7 @@
|
||||
|
||||
```csharp
|
||||
// Models/TestScenario.cs
|
||||
namespace WCTDataMiner.Models;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
public class TestScenario
|
||||
{
|
||||
@@ -110,9 +110,9 @@ public class TestScenario
|
||||
// Data/Configurations/TestScenarioConfiguration.cs
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Data.Configurations;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Data.Configurations;
|
||||
|
||||
public class TestScenarioConfiguration : IEntityTypeConfiguration<TestScenario>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user