111
yanjinhui
2025-03-28 2d4e07b5d61490d3c3cfeb398d3d6e4b6f8be9bb
ÏîÄ¿´úÂë/WCS/WIDESEAWCS_Server/WIDESEAWCS_Server/Controllers/Telescopic/LoginhsyController.cs
@@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core.BaseController;
using WIDESEAWCS_DTO.Telescopic;
using WIDESEAWCS_ITelescopicService;
using WIDESEAWCS_IWMSPart;
using WIDESEAWCS_Model.Models;
@@ -14,5 +15,30 @@
        public LoginhsyController(ILoginhsyService service) : base(service)
        {
        }
<<<<<<< Updated upstream
=======
        /// <summary>
        /// ç™»å…¥è®°å½•
        /// </summary>
        /// <returns></returns>
        [HttpPost, Route("LoginRecord"),AllowAnonymous]
        public WebResponseContent LoginRecord([FromBody]PaginationDTO pagination)
        {
            return Service.LoginRecord(pagination);
        }
        /// <summary>
        /// ç»™æŽ¨å‡ºæ—¶é—´
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        [HttpPost, Route("OutLoginTime"), AllowAnonymous]
        public WebResponseContent OutLoginTime(int id)
        {
            return Service.OutLoginTime(id);
        }
>>>>>>> Stashed changes
    }
}