1
yanjinhui
2025-04-27 01c5166aad248cf4de78d7aeb53c31f961835f02
项目代码/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/MaintenanceTeamController.cs
@@ -12,9 +12,9 @@
{
    [Route("api/[controller]")]
    [ApiController]
    public class MaintenanceTeamController : ApiBaseController<IMaintenanceService, Dt_MaintenanceTeam>
    public class MaintenanceTeamController : ApiBaseController<IMaintenanceTeamService, Dt_MaintenanceTeam>
    {
        public MaintenanceTeamController(IMaintenanceService service) : base(service)
        public MaintenanceTeamController(IMaintenanceTeamService service) : base(service)
        {
@@ -28,7 +28,7 @@
        [HttpPost, Route("MaintenanceSettingRecord"), AllowAnonymous]
        public WebResponseContent MaintenanceSettingRecord([FromBody] PaginationDTO pagination )
        {
            return Service.MaintenanceOperationRecord(pagination);
            return Service.MaintenanceSettingRecord(pagination);
        }
    }