|
|
@@ -157,4 +157,15 @@ public class CompanyController {
|
|
|
public ResponseResultVO transferHead(@RequestBody Map<String, Object> params){
|
|
|
return companyService.transferHead(params);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @desc : 查询服务器的时间日期
|
|
|
+ * @author : 姜永辉
|
|
|
+ * @date : 2024-06-19 11:06
|
|
|
+ */
|
|
|
+ @ApiOperation(value = "查询服务器的时间日期", notes = "查询服务器的时间日期")
|
|
|
+ @PostMapping({"get_current_date"})
|
|
|
+ public ResponseResultVO<Map<String, Object>> getCurrentDate(@RequestBody Map<String, Object> param) {
|
|
|
+ return companyService.getCurrentDate(param);
|
|
|
+ }
|
|
|
}
|