啊鑫
2025-02-09 70e8a5aec5d49a95483d4c0e066ccdcc45a02e79
StandardPda/MESApplication/Controllers/BasicData/EmployeeInfoController.cs
@@ -1,27 +1,21 @@
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 Masuit.Tools;
using MES.Service.Dto.webApi;
using MES.Service.Modes;
using MES.Service.service;
using MES.Service.service.BasicData;
using MES.Service.util;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
namespace MESApplication.Controllers
{
namespace MESApplication.Controllers.BasicData;
    [ApiController]
    [Route("api/[controller]")]
    public class EmployeeInfoController : ControllerBase
    {
        private EmployeeInfoManager m = new EmployeeInfoManager();
        private readonly MessageCenterManager _manager = new();
    private readonly EmployeeInfoManager m = new();
        private readonly string METHOD = "POST";
@@ -263,7 +257,6 @@
            catch (Exception ex)
            {
                return ResponseResult.ResponseError(ex);
            }
        }
    }
}