From 6f89acbf74c6838db518a9f2b6c83f0ab0d97e7f Mon Sep 17 00:00:00 2001 From: 杨张扬 <634643841@qq.com> Date: 星期二, 29 七月 2025 18:13:31 +0800 Subject: [PATCH] 余料回库流程增加绑定和解绑,RFID校验必须校验开头 --- api/ApiModel.cs | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/api/ApiModel.cs b/api/ApiModel.cs index 94dd817..5b3e50f 100644 --- a/api/ApiModel.cs +++ b/api/ApiModel.cs @@ -487,5 +487,23 @@ public int cntCount { get; set; }//瀹瑰櫒鏁伴噺 public string staff { get; set; } = "None";//鎿嶄綔浜� } + + public class SurplusBindInfo + { + public string loc { get; set; }//璐т綅鐐�+ + public string spec { get; set; }//瑙勬牸 + + public float weight { get; set; }//閲嶉噺 + } + + public class SurplusUnBindInfo + { + public string loc { get; set; }//璐т綅鐐�+ + public string spec { get; set; }//瑙勬牸 + + public float weight { get; set; }//閲嶉噺 + } } } -- Gitblit v1.9.1