From 770c681572301c938d7b9adcc60d9aad9d1dd604 Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期二, 19 九月 2023 17:37:03 +0800
Subject: [PATCH] 1.新增基本资料功能接口(erp车间/部门、erp仓库、erp用户信息) 2.报工接口添加字段入库条码 3.增加末道工序报工后提交入库接口(对接erp) 4.增加生成系统条码接口(自定义)

---
 VueWebApi/DLL/BLL/SystemSettingBLL.cs |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/VueWebApi/DLL/BLL/SystemSettingBLL.cs b/VueWebApi/DLL/BLL/SystemSettingBLL.cs
index 427983a..5a767b0 100644
--- a/VueWebApi/DLL/BLL/SystemSettingBLL.cs
+++ b/VueWebApi/DLL/BLL/SystemSettingBLL.cs
@@ -1,5 +1,6 @@
 锘縰sing System;
 using System.Collections.Generic;
+using System.Data;
 using System.Linq;
 using System.Web;
 using VueWebApi.DLL.DAL;
@@ -29,5 +30,35 @@
             return SystemSettingDAL.NewEncodingRules(rightcode);
         }
         #endregion
+
+
+        #region[鐢熸垚绯荤粺鏉$爜(鑷畾涔�)]
+        public static ToMessage LabelBarCode(string rightcode, string partcode, string qty, string onelabqty)
+        {
+            return SystemSettingDAL.LabelBarCode(rightcode, partcode, qty, onelabqty);
+        }
+        #endregion
+
+
+        #region[杞﹂棿鍏憡鍒楄〃]
+        public static ToMessage SystemAnnouncementSearch(string wkspcode, string ancetitle, string ancecont, string cancel, string level, int startNum, int endNum, string prop, string order)
+        {
+            return SystemSettingDAL.SystemAnnouncementSearch(wkspcode, ancetitle, ancecont, cancel, level, startNum, endNum, prop, order);
+        }
+        #endregion
+
+        #region[杞﹂棿鍏憡鏂板缂栬緫鎻愪氦]
+        public static ToMessage SystemAnnouncementAddUpdate(string id,DataTable dt, string ancetitle, string ancecont, string cancel, string level,string username, string opertype)
+        {
+            return SystemSettingDAL.SystemAnnouncementAddUpdate(id,dt, ancetitle, ancecont, cancel, level, username, opertype);
+        }
+        #endregion
+
+        #region[杞﹂棿鍏憡鍒犻櫎]
+        public static ToMessage SystemAnnouncementDelete(string id)
+        {
+            return SystemSettingDAL.SystemAnnouncementDelete(id);
+        }
+        #endregion
     }
 }
\ No newline at end of file

--
Gitblit v1.9.3