2025-04-25 14:35:59 +08:00
|
|
|
|
using JiShe.CollectBus.Protocol.Interfaces;
|
2025-04-24 19:31:28 +08:00
|
|
|
|
|
2025-04-27 10:20:22 +08:00
|
|
|
|
namespace JiShe.CollectBus.Protocol.T37612012.Appendix
|
2025-04-24 19:31:28 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class Appendix_A17 : IAnalysisStrategy<List<string>, string>
|
|
|
|
|
|
{
|
|
|
|
|
|
public async Task<string> ExecuteAsync(List<string> data)
|
|
|
|
|
|
{
|
|
|
|
|
|
data.Reverse();
|
|
|
|
|
|
string datasStr= string.Join("", data);
|
|
|
|
|
|
return await Task.FromResult(datasStr);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|