VueWebApi/Controllers/SystemSettingController.cs
@@ -79,6 +79,23 @@
        }
        #endregion
        #region[生成系统条码(自定义)]
        /// <summary>
        /// 生成系统条码(自定义)
        /// </summary>
        /// <param name="rightcode">功能编码</param>
        /// <param name="partcode">物料编码</param>
        /// <param name="qty">数量</param>
        /// <param name="onelabqty">单标签数量</param>
        /// <returns></returns>
        [Route(template: "LabelBarCode")]
        [HttpGet]
        public HttpResponseMessage LabelBarCode(string rightcode, string partcode, string qty, string onelabqty)
        {
            mes = SystemSettingBLL.LabelBarCode(rightcode, partcode, qty, onelabqty);
            return TJson.toJson(mes);
        }
        #endregion
        #region[车间公告列表]