From b466b3135cd7f3b08f570efda0ffb691daff5270 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期五, 05 十二月 2025 18:15:16 +0800
Subject: [PATCH] 一期输送线代码及AGV请求等
---
项目代码/WCSServices/WIDESEAWCS_DTO/EPLightContent.cs | 39 +++++++++++++++++++++++++++++++++++++++
1 files changed, 39 insertions(+), 0 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WCSServices/WIDESEAWCS_DTO/EPLightContent.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCSServices/WIDESEAWCS_DTO/EPLightContent.cs"
new file mode 100644
index 0000000..9d06305
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WCSServices/WIDESEAWCS_DTO/EPLightContent.cs"
@@ -0,0 +1,39 @@
+锘縰sing System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using WIDESEAWCS_Core;
+
+namespace WIDESEAWCS_DTO
+{
+ public class EPLightContent
+ {
+ /// <summary>
+ /// 杩斿洖缁撴灉 0:鎴愬姛;-1:澶辫触
+ /// </summary>
+ public string Result { get; set; }
+ /// <summary>
+ /// 杩斿洖淇℃伅
+ /// </summary>
+ public string Msg { get; set; }
+
+ public EPLightContent()
+ {
+ }
+
+ public EPLightContent OK(string message = "")
+ {
+ Result = "0";
+ Msg = message;
+ return this;
+ }
+
+ public EPLightContent Error(string message = "")
+ {
+ Result = "-1";
+ Msg = message;
+ return this;
+ }
+ }
+}
--
Gitblit v1.9.3