From 5769c3db0d58ec78288c93b9d8c81271ea5d551c Mon Sep 17 00:00:00 2001
From: lch <1627445470@qq.com>
Date: Wed, 22 May 2024 11:27:19 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AB=99=E7=82=B9=E5=9F=BA=E7=A1=80=E4=BF=A1?=
=?UTF-8?q?=E6=81=AF=20Controller=20=E6=9B=B4=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../BasicConfig/RfidReadWriteController.cs | 186 +++++++++---------
1 file changed, 93 insertions(+), 93 deletions(-)
diff --git a/WebStarter/Controllers/BasicConfig/RfidReadWriteController.cs b/WebStarter/Controllers/BasicConfig/RfidReadWriteController.cs
index ecdec67..c7c75f9 100644
--- a/WebStarter/Controllers/BasicConfig/RfidReadWriteController.cs
+++ b/WebStarter/Controllers/BasicConfig/RfidReadWriteController.cs
@@ -8,102 +8,102 @@ using HybirdFrameworkCore.Entity;
namespace WebStarter.Controllers.BasicConfig
{
- /////
- ///// 基础配置 RFID读写
- /////
- //[ApiController]
- //[Route("api/[controller]")]
- //public class RfidReadWriteController
- //{
- // ///
- // /// 预览
- // /// 车型 的ASCLL、解析后信息
- // ///
- // [HttpPost("Preview")]
- // public async Task> Preview([FromBody] RfidPreviewReq rfidPreviewReq)
- // {
- // RfidPreviewResp rfidPreviewRes = new RfidPreviewResp
- // {
- // AnalysisRfidInfo = "",
- // GetAscllInfo = ""
- // };
- // //string strRfidRlt = ASCIIEncoding.ASCII.GetString(bytesRfid);
- // return Result.Success(rfidPreviewRes);
- // }
+ ///
+ /// 基础配置 RFID读写
+ ///
+ [ApiController]
+ [Route("api/[controller]")]
+ public class RfidReadWriteController
+ {
+ // ///
+ // /// 预览
+ // /// 车型 的ASCLL、解析后信息
+ // ///
+ // [HttpPost("Preview")]
+ // public async Task> Preview([FromBody] RfidPreviewReq rfidPreviewReq)
+ // {
+ // RfidPreviewResp rfidPreviewRes = new RfidPreviewResp
+ // {
+ // AnalysisRfidInfo = "",
+ // GetAscllInfo = ""
+ // };
+ // //string strRfidRlt = ASCIIEncoding.ASCII.GetString(bytesRfid);
+ // return Result.Success(rfidPreviewRes);
+ // }
- // ///
- // /// RFID写值
- // ///
- // [HttpGet("RfidWriteValue/{id}")]
- // public async Task> RfidWriteValue()
- // {
- // //string strResult = "";
- // ////strHexVelNoRlt 16进制字符串 保存车辆信息
- // //string strHexVelNoRlt = "";
- // ////车辆VIN码
- // //string strVelVin = txtVelVin.Text.Trim();
- // ////车型号
- // //string strVelType = txtVelType.Text.Trim();
- // ////车辆MAC
- // //string strVelMac = txtVelMac.Text.Trim();
- // ////车牌号
- // //string strVelNo = txtVelNo.Text.Trim();
+ // ///
+ // /// RFID写值
+ // ///
+ // [HttpGet("RfidWriteValue/{id}")]
+ // public async Task> RfidWriteValue()
+ // {
+ // //string strResult = "";
+ // ////strHexVelNoRlt 16进制字符串 保存车辆信息
+ // //string strHexVelNoRlt = "";
+ // ////车辆VIN码
+ // //string strVelVin = txtVelVin.Text.Trim();
+ // ////车型号
+ // //string strVelType = txtVelType.Text.Trim();
+ // ////车辆MAC
+ // //string strVelMac = txtVelMac.Text.Trim();
+ // ////车牌号
+ // //string strVelNo = txtVelNo.Text.Trim();
- // //if (!string.IsNullOrEmpty(strVelVin))
- // //{
- // // strResult += "C-" + strVelVin;
- // //}
- // //else
- // //{
- // // strResult += "C-" + " ";
- // //}
- // //if (!string.IsNullOrEmpty(strVelType))
- // //{
- // // strResult += "&" + strVelType;
- // //}
- // //else
- // //{
- // // strResult += "&" + " ";
- // //}
- // //if (!string.IsNullOrEmpty(strVelMac))
- // //{
- // // strResult += "&" + strVelMac.Replace(" ", "");
- // //}
- // //else
- // //{
- // // strResult += "&" + " ";
- // //}
- // //if (!string.IsNullOrEmpty(strVelNo))
- // //{
- // // Encoding toEcoding = Encoding.GetEncoding("gb2312");
- // // byte[] bytesVelNo = toEcoding.GetBytes(strVelNo);
- // // strHexVelNoRlt = ByteConvert.BytesToHexStr(bytesVelNo);
- // //}
- // //txtStartRfidCode.Text = strResult;
- // //bytesRfid = System.Text.ASCIIEncoding.ASCII.GetBytes(strResult);
- // //byte[] bytesEpc = System.Text.ASCIIEncoding.ASCII.GetBytes(strHexVelNoRlt);
+ // //if (!string.IsNullOrEmpty(strVelVin))
+ // //{
+ // // strResult += "C-" + strVelVin;
+ // //}
+ // //else
+ // //{
+ // // strResult += "C-" + " ";
+ // //}
+ // //if (!string.IsNullOrEmpty(strVelType))
+ // //{
+ // // strResult += "&" + strVelType;
+ // //}
+ // //else
+ // //{
+ // // strResult += "&" + " ";
+ // //}
+ // //if (!string.IsNullOrEmpty(strVelMac))
+ // //{
+ // // strResult += "&" + strVelMac.Replace(" ", "");
+ // //}
+ // //else
+ // //{
+ // // strResult += "&" + " ";
+ // //}
+ // //if (!string.IsNullOrEmpty(strVelNo))
+ // //{
+ // // Encoding toEcoding = Encoding.GetEncoding("gb2312");
+ // // byte[] bytesVelNo = toEcoding.GetBytes(strVelNo);
+ // // strHexVelNoRlt = ByteConvert.BytesToHexStr(bytesVelNo);
+ // //}
+ // //txtStartRfidCode.Text = strResult;
+ // //bytesRfid = System.Text.ASCIIEncoding.ASCII.GetBytes(strResult);
+ // //byte[] bytesEpc = System.Text.ASCIIEncoding.ASCII.GetBytes(strHexVelNoRlt);
- // //_RfidRwTool.WriteRfidSingleTagResult(bytesRfid, bytesEpc);
- // return Result.Success();
- // }
- // ///
- // /// RFID 识别
- // ///
- // [HttpGet("RfidRecognition")]
- // public async Task> RfidRecognition()
- // {
- // //TODO::识别RFID 信息
- // return Result.Success();
- // }
- // ///
- // /// 车型号返回
- // ///
- // [HttpGet("VelType")]
- // public async Task>> VelType()
- // {
- // List list = new List();
+ // //_RfidRwTool.WriteRfidSingleTagResult(bytesRfid, bytesEpc);
+ // return Result.Success();
+ // }
+ // ///
+ // /// RFID 识别
+ // ///
+ // [HttpGet("RfidRecognition")]
+ // public async Task> RfidRecognition()
+ // {
+ // //TODO::识别RFID 信息
+ // return Result.Success();
+ // }
+ // ///
+ // /// 车型号返回
+ // ///
+ // [HttpGet("VelType")]
+ // public async Task>> VelType()
+ // {
+ // List list = new List();
- // return Result>.Success();
- // }
+ // return Result>.Success();
+ // }
}
}