StandardPda/MES.Service/Dto/service/RackingTaskResponse.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,49 @@ namespace MES.Service.Dto.service; /// <summary> /// ç«ä½ä»åºä»»å¡ååºç±» /// </summary> public class RackingTaskResponse { /// <summary> /// è¿åç¶æï¼200代表æåï¼500代表失败 /// </summary> public string Code { get; set; } /// <summary> /// æ¶æ¯å 容 /// </summary> public string? JsonMessage { get; set; } /// <summary> /// åé¦ç»æè¡¥å 说æ /// </summary> public string? CodeMessage { get; set; } /// <summary> /// å建æåååº /// </summary> public static RackingTaskResponse Success() { return new RackingTaskResponse { Code = "200", JsonMessage = null, CodeMessage = null }; } /// <summary> /// å建失败ååº /// </summary> /// <param name="codeMessage">éè¯¯æ¶æ¯</param> public static RackingTaskResponse Fail(string codeMessage) { return new RackingTaskResponse { Code = "500", JsonMessage = null, CodeMessage = codeMessage }; } } StandardPda/MES.Service/Dto/service/TaskCompleteReportDto.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,27 @@ namespace MES.Service.Dto.service; /// <summary> /// ä»»å¡å®æä¸æ¥è¯·æ±åæ° /// </summary> public class TaskCompleteReportDto { /// <summary> /// ä»»å¡ç±»åï¼1-ç©æåºåº / 2-ç©æå ¥åº / 3-空æçåºåº / 7-è ¾æªåºä½ /// </summary> public string TaskType { get; set; } /// <summary> /// ä»»å¡å·ï¼ä½ä¸ç¼å·ï¼ï¼å ¨å±å¯ä¸ï¼ç¨äºé²é /// </summary> public string TaskCode { get; set; } /// <summary> /// æçç¼ç /// </summary> public string PalletCode { get; set; } /// <summary> /// åºä½ç¼ç ï¼æ ¼å¼å¦"010203"ï¼ä»£è¡¨1æ2å±3å /// </summary> public string? LocCode { get; set; } } StandardPda/MES.Service/Dto/service/TaskErrorReportDto.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,32 @@ namespace MES.Service.Dto.service; /// <summary> /// å¼å¸¸ä»»å¡ä¸æ¥è¯·æ±åæ° /// </summary> public class TaskErrorReportDto { /// <summary> /// ä»»å¡ç±»åï¼1-ç©æåºåº / 2-ç©æå ¥åº / 3-空æçåºåº / 7-è ¾æªåºä½ /// </summary> public string TaskType { get; set; } /// <summary> /// ä»»å¡å·ï¼ä½ä¸ç¼å·ï¼ï¼å ¨å±å¯ä¸ï¼ç¨äºé²é /// </summary> public string? TaskCode { get; set; } /// <summary> /// æçç¼ç /// </summary> public string PalletCode { get; set; } /// <summary> /// å¼å¸¸ä»£ç /// </summary> public string ErrorCode { get; set; } /// <summary> /// å¼å¸¸æè¿°ï¼å¦"å ¥åºæªæ£åºMESå ¥åºä»»å¡" /// </summary> public string ErrorMessage { get; set; } } StandardPda/MES.Service/Modes/XbRackingTaskSyxtLog.cs
@@ -11,115 +11,114 @@ /// <summary> /// 主é®ID /// </summary> [SugarColumn(IsPrimaryKey = true, IsNullable = false, ColumnDataType = "NUMBER(20)")] [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// <summary> /// å建人 /// </summary> [SugarColumn(IsNullable = true, Length = 30, ColumnDataType = "VARCHAR2")] public string CreateBy { get; set; } [SugarColumn(ColumnName = "CREATE_BY")] public string? CreateBy { get; set; } /// <summary> /// å建æ¶é´ /// </summary> [SugarColumn(IsNullable = true, ColumnDataType = "DATE")] [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// <summary> /// ä»»å¡å· /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string TaskCode { get; set; } [SugarColumn(ColumnName = "TASKCODE")] public string? TaskCode { get; set; } /// <summary> /// ä»»å¡ä¸åç±»å /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string TaskType { get; set; } [SugarColumn(ColumnName = "TASKTYPE")] public string? TaskType { get; set; } /// <summary> /// æç /// </summary> [SugarColumn(IsNullable = false, Length = 50, ColumnDataType = "VARCHAR2")] public string PalletCode { get; set; } [SugarColumn(ColumnName = "PALLETCODE")] public string? PalletCode { get; set; } /// <summary> /// è´§ç©ç±»å /// </summary> [SugarColumn(IsNullable = true, ColumnDataType = "NUMBER(20)")] [SugarColumn(ColumnName = "WIDTHTYPE")] public decimal? WidthType { get; set; } /// <summary> /// ç©æåç§° /// </summary> [SugarColumn(IsNullable = true, Length = 100, ColumnDataType = "VARCHAR2")] public string MaterialName { get; set; } [SugarColumn(ColumnName = "MATERIALNAME")] public string? MaterialName { get; set; } /// <summary> /// ç©æç¼ç /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string MaterialCode { get; set; } [SugarColumn(ColumnName = "MATERIALCODE")] public string? MaterialCode { get; set; } /// <summary> /// æ¹å· /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string BatchNo { get; set; } [SugarColumn(ColumnName = "BATCHNO")] public string? BatchNo { get; set; } /// <summary> /// æ°é /// </summary> [SugarColumn(IsNullable = true, ColumnDataType = "NUMBER(20)")] [SugarColumn(ColumnName = "QUANTITY")] public decimal? Quantity { get; set; } /// <summary> /// ä»»å¡ä¸åæ¥æ¶æ°æ® /// </summary> [SugarColumn(IsNullable = true, ColumnDataType = "CLOB")] public string WarehousingJson { get; set; } [SugarColumn(ColumnName = "WAREHOUSINGJSON")] public string? WarehousingJson { get; set; } /// <summary> /// å·¥ä½ç¹ /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string Station { get; set; } [SugarColumn(ColumnName = "STATION")] public string? Station { get; set; } /// <summary> /// ä»»å¡ä¸æ¥ç±»å /// 200代表æå500代表失败 /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string TaskReporting { get; set; } [SugarColumn(ColumnName = "CODE")] public string? Code { get; set; } /// <summary> /// åºä½ /// æ¶æ¯å 容 /// </summary> [SugarColumn(IsNullable = true, Length = 20, ColumnDataType = "VARCHAR2")] public string LocCode { get; set; } [SugarColumn(ColumnName = "JSON_MESSAGE")] public string? JsonMessage { get; set; } /// <summary> /// å¼å¸¸ä»£ç /// åé¦ç»æè¡¥å 说æ /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string ErrorCode { get; set; } [SugarColumn(ColumnName = "CODE_MESSAGE")] public string? CodeMessage { get; set; } /// <summary> /// å¼å¸¸æè¿° /// è¡¥å /// </summary> [SugarColumn(IsNullable = true, Length = 200, ColumnDataType = "VARCHAR2")] public string ErrorMessage { get; set; } [SugarColumn(ColumnName = "DATA")] public string? Data { get; set; } /// <summary> /// ä»»å¡ä¸æ¥æ¥æ¶æ°æ® /// åºä½ç¼ç /// </summary> [SugarColumn(IsNullable = true, ColumnDataType = "CLOB")] public string MissionAccomplishedJson { get; set; } [SugarColumn(ColumnName = "LOCCODE")] public string? LocCode { get; set; } /// <summary> /// ä¸å¡ç±»å /// åºä½ä¸æåç§° /// </summary> [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] public string BusinessType { get; set; } [SugarColumn(ColumnName = "LOCCODECHINESE")] public string? LocCodeChinese { get; set; } } StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.dllBinary files differ
StandardPda/MES.Service/bin/Debug/net8.0/MES.Service.pdbBinary files differ
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfo.cs
@@ -13,7 +13,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("MES.Service")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+57662120d41592f254774481da29564b13bea668")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2f4699ff377f0e5ea3640bb3670b2fbfbd56e3fb")] [assembly: System.Reflection.AssemblyProductAttribute("MES.Service")] [assembly: System.Reflection.AssemblyTitleAttribute("MES.Service")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.AssemblyInfoInputs.cache
@@ -1 +1 @@ 5eae2084e55f96a3076bd26c01f56fc0fab68bf99259ce5863a14d2759ac4463 c3f4f60d7b6bc5390bec43453c02cc2c29f88ae1aeb63688e1ced88dd7b1f25e StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ a0b3039662d1bcbbbfc359fabc1d47d26d83a488101d74ab9555387ee29ea216 90c59daba423ab99b975f1b940bfb188cb86bd529d474e078c4429165ad694ea StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.dllBinary files differ
StandardPda/MES.Service/obj/Debug/net8.0/MES.Service.pdbBinary files differ
StandardPda/MES.Service/obj/Debug/net8.0/ref/MES.Service.dllBinary files differ
StandardPda/MES.Service/obj/Debug/net8.0/refint/MES.Service.dllBinary files differ
StandardPda/MES.Service/service/Warehouse/XbRackingTaskSyxtLogManager.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,134 @@ using MES.Service.DB; using MES.Service.Dto.service; using MES.Service.Modes; namespace MES.Service.service.Warehouse; public class XbRackingTaskSyxtLogManager : Repository<XbRackingTaskSyxtLog> { /// <summary> /// ä»»å¡å®æä¸æ¥ /// </summary> /// <param name="dto">ä»»å¡å®æä¸æ¥åæ°</param> /// <returns>ç»ä¸ååºç»æ</returns> public RackingTaskResponse TaskCompleteReport(TaskCompleteReportDto dto) { try { // æ¥éª¤1ï¼éªè¯ä»»å¡å·æ¯å¦åå¨ var task = Context.Queryable<XbRackingTaskSyxtLog>() .Where(t => t.TaskCode == dto.TaskCode) .First(); if (task == null) { return RackingTaskResponse.Fail($"ä»»å¡å·[{dto.TaskCode}]ä¸åå¨"); } // æ¥éª¤2ï¼éªè¯æçç¼ç æ¯å¦å¹é if (task.PalletCode != dto.PalletCode) { return RackingTaskResponse.Fail($"æçç¼ç ä¸å¹é ï¼ææ[{task.PalletCode}]ï¼å®é [{dto.PalletCode}]"); } // æ¥éª¤3ï¼è½¬æ¢åºä½ç¼ç ä¸ºä¸æ string? locCodeChinese = null; if (!string.IsNullOrEmpty(dto.LocCode)) { // éªè¯åºä½ç¼ç æ ¼å¼ if (dto.LocCode.Length != 6 || !dto.LocCode.All(char.IsDigit)) { return RackingTaskResponse.Fail("åºä½ç¼ç æ ¼å¼é误ï¼åºä¸º6使°å"); } // 转æ¢åºä½ç¼ç locCodeChinese = ConvertLocCodeToChinese(dto.LocCode); } // æ¥éª¤4ï¼æ´æ°ä»»å¡æ¥å¿è¡¨ var updateResult = Context.Updateable<XbRackingTaskSyxtLog>() .SetColumns(t => t.LocCode == dto.LocCode) .SetColumns(t => t.LocCodeChinese == locCodeChinese) .SetColumns(t => t.Code == "200") .SetColumns(t => t.JsonMessage == "ä»»å¡å®æ") .SetColumns(t => t.CodeMessage == "ä»»å¡å®æ") .Where(t => t.TaskCode == dto.TaskCode) .ExecuteCommand(); if (updateResult <= 0) { return RackingTaskResponse.Fail("æ´æ°ä»»å¡æ¥å¿å¤±è´¥"); } return RackingTaskResponse.Success(); } catch (Exception ex) { return RackingTaskResponse.Fail($"æ´æ°ä»»å¡æ¥å¿å¤±è´¥ï¼{ex.Message}"); } } /// <summary> /// å°åºä½ç¼ç 转æ¢ä¸ºä¸ææè¿° /// </summary> /// <param name="locCode">åºä½ç¼ç ï¼æ ¼å¼å¦"010203"</param> /// <returns>䏿æè¿°ï¼æ ¼å¼å¦"1æ2å±3å"</returns> private string ConvertLocCodeToChinese(string locCode) { // è§£ææå·ï¼å两ä½ï¼ int row = int.Parse(locCode.Substring(0, 2)); // è§£æå±å·ï¼ä¸é´ä¸¤ä½ï¼ int level = int.Parse(locCode.Substring(2, 2)); // è§£æåå·ï¼å两ä½ï¼ int column = int.Parse(locCode.Substring(4, 2)); return $"{row}æ{level}å±{column}å"; } /// <summary> /// å¼å¸¸ä»»å¡ä¸æ¥ /// </summary> /// <param name="dto">å¼å¸¸ä»»å¡ä¸æ¥åæ°</param> /// <returns>ç»ä¸ååºç»æ</returns> public RackingTaskResponse TaskErrorReport(TaskErrorReportDto dto) { try { // æ¥éª¤1ï¼éªè¯ä»»å¡å·æ¯å¦åå¨ var task = Context.Queryable<XbRackingTaskSyxtLog>() .Where(t => t.TaskCode == dto.TaskCode) .First(); if (task == null) { return RackingTaskResponse.Fail($"ä»»å¡å·[{dto.TaskCode}]ä¸åå¨"); } // æ¥éª¤2ï¼éªè¯æçç¼ç æ¯å¦å¹é if (task.PalletCode != dto.PalletCode) { return RackingTaskResponse.Fail($"æçç¼ç ä¸å¹é ï¼ææ[{task.PalletCode}]ï¼å®é [{dto.PalletCode}]"); } // æ¥éª¤3ï¼æ´æ°ä»»å¡æ¥å¿è¡¨ var updateResult = Context.Updateable<XbRackingTaskSyxtLog>() .SetColumns(t => t.Code == "500") .SetColumns(t => t.JsonMessage == dto.ErrorMessage) .SetColumns(t => t.CodeMessage == dto.ErrorMessage) .Where(t => t.TaskCode == dto.TaskCode) .ExecuteCommand(); if (updateResult <= 0) { return RackingTaskResponse.Fail("æ´æ°ä»»å¡æ¥å¿å¤±è´¥"); } return RackingTaskResponse.Success(); } catch (Exception ex) { return RackingTaskResponse.Fail($"æ´æ°ä»»å¡æ¥å¿å¤±è´¥ï¼{ex.Message}"); } } } StandardPda/MESApplication/Controllers/Warehouse/XbRackingTaskSyxtLogController.cs
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,276 @@ using System.Dynamic; using MES.Service.Dto.service; using MES.Service.Modes; using MES.Service.service; using MES.Service.service.Warehouse; using MES.Service.util; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; namespace MESApplication.Controllers.Warehouse; [ApiController] [Route("api/[controller]")] public class XbRackingTaskSyxtLogController : ControllerBase { private readonly MessageCenterManager _manager = new(); private readonly XbRackingTaskSyxtLogManager m = new(); private readonly string METHOD = "POST"; private readonly string TableName = "xb_racking_task_syxt_log"; private readonly string URL = "http://localhost:10054/api/XbRackingTaskSyxtLog/"; /***è¿å ¥æ¨¡ç管çå¯ä»¥ä¿®æ¹æ¨¡ç***/ /// <summary> /// è·åææ /// </summary> /// <returns></returns> [HttpPost("GetList")] public ResponseResult GetList() { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.GetList(); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// æ ¹æ®ä¸»é®è·å /// </summary> /// <returns></returns> [HttpPost("GetById")] public ResponseResult GetById(decimal id) { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.GetById(id); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// æ ¹æ®ä¸»é®å é¤ /// </summary> /// <returns></returns> [HttpPost("DeleteByIds")] public ResponseResult DeleteByIds([FromBody] object[] ids) { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.DeleteByIds(ids); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// æ·»å /// </summary> /// <returns></returns> [HttpPost("Insert")] public ResponseResult Add([FromBody] XbRackingTaskSyxtLog data) { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.Insert(data); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// æ·»å è¿åèªå¢ /// </summary> /// <returns></returns> [HttpPost("InsertReturnIdentity")] public ResponseResult InsertReturnIdentity( [FromBody] XbRackingTaskSyxtLog data) { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.InsertReturnIdentity(data); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// ä¿®æ¹ /// </summary> /// <returns></returns> [HttpPost("Update")] public ResponseResult Update([FromBody] XbRackingTaskSyxtLog data) { try { dynamic resultInfos = new ExpandoObject(); resultInfos.tbBillList = m.Update(data); return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } /// <summary> /// ä»»å¡å®æä¸æ¥ /// </summary> /// <returns></returns> [HttpPost("TaskCompleteReport")] public ResponseResult TaskCompleteReport(TaskCompleteReportDto dto) { var entity = new MessageCenter(); entity.TableName = TableName; entity.Url = URL + "TaskCompleteReport"; entity.Method = METHOD; entity.Data = JsonConvert.SerializeObject(dto); entity.Status = 1; entity.CreateBy = "PL017"; try { dynamic resultInfos = new ExpandoObject(); var result = m.TaskCompleteReport(dto); resultInfos.tbBillList = result; entity.Result = 0; if (result.Code == "200") entity.Result = 1; entity.DealWith = 1; _manager.save(entity); if (result.Code == "200") return new ResponseResult { status = 0, message = "OK", data = resultInfos }; return new ResponseResult { status = 1, message = result.CodeMessage, data = resultInfos }; } catch (Exception ex) { entity.Result = 0; entity.DealWith = 0; entity.ResultData = ex.Message; _manager.save(entity); return ResponseResult.ResponseError(ex); } } /// <summary> /// å¼å¸¸ä»»å¡ä¸æ¥ /// </summary> /// <returns></returns> [HttpPost("TaskErrorReport")] public ResponseResult TaskErrorReport(TaskErrorReportDto dto) { var entity = new MessageCenter(); entity.TableName = TableName; entity.Url = URL + "TaskErrorReport"; entity.Method = METHOD; entity.Data = JsonConvert.SerializeObject(dto); entity.Status = 1; entity.CreateBy = "PL017"; try { dynamic resultInfos = new ExpandoObject(); var result = m.TaskErrorReport(dto); resultInfos.tbBillList = result; entity.Result = 0; if (result.Code == "200") entity.Result = 1; entity.DealWith = 1; _manager.save(entity); if (result.Code == "200") return new ResponseResult { status = 0, message = "OK", data = resultInfos }; return new ResponseResult { status = 1, message = result.CodeMessage, data = resultInfos }; } catch (Exception ex) { entity.Result = 0; entity.DealWith = 0; entity.ResultData = ex.Message; _manager.save(entity); return ResponseResult.ResponseError(ex); } } } StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.dllBinary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MES.Service.pdbBinary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.dllBinary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.exeBinary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.pdbBinary files differ
StandardPda/MESApplication/bin/Debug/net8.0/MESApplication.xml
@@ -1221,6 +1221,42 @@ è§£ç»snç </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.GetList"> <summary> è·åææ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.GetById(System.Decimal)"> <summary> æ ¹æ®ä¸»é®è·å </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.DeleteByIds(System.Object[])"> <summary> æ ¹æ®ä¸»é®å é¤ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.Add(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> æ·»å </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.InsertReturnIdentity(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> æ·»å è¿åèªå¢ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.Update(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> ä¿®æ¹ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.WomcaaController.GetList"> <summary> StandardPda/MESApplication/bin/Debug/net8.0/appsettings.json
@@ -11,7 +11,8 @@ "TestErpUrl": "http://192.168.11.120:8098/WebService1.asmx/mesToErpinfo", "ProductionErpUrl": "http://192.168.11.120:8098/WebService1.asmx/mesToErpinfoFormal", "DataBaseConn": "Data Source = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 122.226.249.238 )(PORT = 5936))(CONNECT_DATA = (SERVICE_NAME = ORCL))); Persist Security Info=True;User ID = xb_prd; Password=xbprd", "U9IP": "192.168.1.66:45798" //U9æå¡å¨IPå°å,å°æ¥æ£å¼ "U9IP": "192.168.1.66:45798" //U9æå¡å¨IPå°å,å°æ¥æ£å¼ //"U9IP": "192.168.1.66:45797" //U9æå¡å¨IPå°å,å°æ¥æµè¯ } } StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfo.cs
@@ -13,7 +13,7 @@ [assembly: System.Reflection.AssemblyCompanyAttribute("MESApplication")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+57662120d41592f254774481da29564b13bea668")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2f4699ff377f0e5ea3640bb3670b2fbfbd56e3fb")] [assembly: System.Reflection.AssemblyProductAttribute("MESApplication")] [assembly: System.Reflection.AssemblyTitleAttribute("MESApplication")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.AssemblyInfoInputs.cache
@@ -1 +1 @@ b2fccb4cd2cdf4462bf862716ec574fbc0a777d08afc11e61b581f8f5a67250e 8c5dd14083bb7d88e6dc7583bcc3d8f10f5799e6f6c66b02a99f949f47aa977a StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.csproj.AssemblyReference.cacheBinary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.csproj.CoreCompileInputs.cache
@@ -1 +1 @@ e69ebffd9b97996fa0fc7420689e44ace2d59bf02a826037d68dfbce1e6e2f0a f223c14a236ed82552fd69736622a648752037047e48466dd45ac3f12f630ca2 StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.dllBinary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.pdbBinary files differ
StandardPda/MESApplication/obj/Debug/net8.0/MESApplication.xml
@@ -1221,6 +1221,42 @@ è§£ç»snç </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.GetList"> <summary> è·åææ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.GetById(System.Decimal)"> <summary> æ ¹æ®ä¸»é®è·å </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.DeleteByIds(System.Object[])"> <summary> æ ¹æ®ä¸»é®å é¤ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.Add(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> æ·»å </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.InsertReturnIdentity(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> æ·»å è¿åèªå¢ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.Warehouse.XbRackingTaskSyxtLogController.Update(MES.Service.Modes.XbRackingTaskSyxtLog)"> <summary> ä¿®æ¹ </summary> <returns></returns> </member> <member name="M:MESApplication.Controllers.WomcaaController.GetList"> <summary> StandardPda/MESApplication/obj/Debug/net8.0/apphost.exeBinary files differ
StandardPda/MESApplication/obj/Debug/net8.0/ref/MESApplication.dllBinary files differ
StandardPda/MESApplication/obj/Debug/net8.0/refint/MESApplication.dllBinary files differ