展杰
2024-08-16 3dfa3d93337cca6363b0e138c74f80af96431b83
MESApplication/Controllers/Warehouse/MesInvBusiness2Controller.cs
@@ -1,24 +1,16 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Dynamic;
using System.Dynamic;
using MES.Service.Modes;
using MES.Service.service;
using MES.Service.service.Warehouse;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
namespace MESApplication.Controllers.Warehouse
{
namespace MESApplication.Controllers.Warehouse;
    [ApiController]
    [Route("api/[controller]")]
    public class MesInvBusiness2Controller : ControllerBase
    {
        private MesInvBusiness2Manager m = new MesInvBusiness2Manager();
    private readonly MesInvBusiness2Manager m = new();
        /***进入模版管理可以修改模版***/
@@ -119,6 +111,7 @@
                return ResponseResult.ResponseError(ex);
            }
        }
        /// <summary>
        /// 添加返回自增
        /// </summary>
@@ -164,7 +157,6 @@
            catch (Exception ex)
            {
                return ResponseResult.ResponseError(ex);
            }
        }
    }
}