Beispiel #1
0
        public IActionResult GetEmployeeInfoById(int id)
        {
            var data = _employeeInfoService.GetEmployeeInfoById(id);

            if (data == null)
            {
                return(Ok(new { msg = "不存在该员工信息,获取失败!" }));
            }

            return(Ok(data));
        }