啊鑫
2024-09-21 049c1891f1dcede1fe81320992e61c34f661898b
MESApplication/Controllers/MesRfPrnbarcodeController.cs
@@ -1,17 +1,16 @@
using Microsoft.AspNetCore.Mvc;
using System.Dynamic;
using System.Dynamic;
using MES.Service.Modes;
using MES.Service.service;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
namespace MESApplication.Controllers
{
namespace MESApplication.Controllers;
    [ApiController]
    [Route("api/[controller]")]
    public class MesRfPrnbarcodeController : ControllerBase
    {
        private MesRfPrnbarcodeManager m = new MesRfPrnbarcodeManager();
    private readonly MesRfPrnbarcodeManager m = new();
        /***进入模版管理可以修改模版***/
@@ -112,6 +111,7 @@
                return ResponseResult.ResponseError(ex);
            }
        }
        /// <summary>
        /// 添加返回自增
        /// </summary>
@@ -157,7 +157,6 @@
            catch (Exception ex)
            {
                return ResponseResult.ResponseError(ex);
            }
        }
    }
}