|
|
@@ -730,7 +730,11 @@ public class CompanyServiceImpl extends ServiceImpl<CompanyMapper, Company> impl
|
|
|
*/
|
|
|
public ResponseResultVO<Map<String, Object>> getCurrentDate(Map<String, Object> param) {
|
|
|
Map<String, Object> res = new HashMap<>();
|
|
|
- res.put("currentDate", LocalDate.now());
|
|
|
+ if (param.get("flgTime") !=null){
|
|
|
+ res.put("currentDate", LocalDateTime.now());
|
|
|
+ }else{
|
|
|
+ res.put("currentDate", LocalDate.now());
|
|
|
+ }
|
|
|
return ResponseResultUtil.success(res);
|
|
|
}
|
|
|
}
|