docs: 同步项目重命名后的架构文档
This commit is contained in:
@@ -39,9 +39,9 @@
|
||||
```csharp
|
||||
// Parsers/FileNameParser.cs
|
||||
using System.Globalization;
|
||||
using WCTDataMiner.Services;
|
||||
using Gpulse.WCT.DataAnalyzer.Services;
|
||||
|
||||
namespace WCTDataMiner.Parsers;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Parsers;
|
||||
|
||||
public class FileNameParser
|
||||
{
|
||||
|
||||
@@ -102,9 +102,9 @@ private static readonly Regex FodPattern = new(
|
||||
```csharp
|
||||
// Parsers/PlossParser.cs
|
||||
using System.Text.RegularExpressions;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Parsers;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Parsers;
|
||||
|
||||
public class PlossParser : IParser<PlossRecord>
|
||||
{
|
||||
|
||||
@@ -53,9 +53,9 @@ private static readonly Regex QfodPattern = new(
|
||||
```csharp
|
||||
// Parsers/QfodParser.cs
|
||||
using System.Text.RegularExpressions;
|
||||
using WCTDataMiner.Models;
|
||||
using Gpulse.WCT.DataAnalyzer.Models;
|
||||
|
||||
namespace WCTDataMiner.Parsers;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Parsers;
|
||||
|
||||
public class QfodParser : IParser<QfodRecord>
|
||||
{
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
```csharp
|
||||
// Parsers/IParser.cs
|
||||
namespace WCTDataMiner.Parsers;
|
||||
namespace Gpulse.WCT.DataAnalyzer.Parsers;
|
||||
|
||||
public interface IParser<TRecord>
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user