摘要: 添加海康pom依赖 <dependency> <groupId>com.hikvision.ga</groupId> <artifactId>artemis-http-client</artifactId> <version>1.1.3</version> </dependency> private 阅读全文
posted @ 2023-01-14 09:46 初见如月 阅读(1633) 评论(0) 推荐(0) 编辑
摘要: /** * 计算地球上任意两点(经纬度)距离 * * @param long1 前端传入的打卡第一点经度 * @param lat1 前端传入的打卡第一点纬度 * @param long2 范围之内的第二点经度 * @param lat2 范围之内的第二点纬度 * @return 返回距离 单位:米 阅读全文
posted @ 2023-01-14 09:32 初见如月 阅读(1015) 评论(0) 推荐(0) 编辑
摘要: public static List<String> getDate(Date startDate, Date endDate){ //定义时间格式 SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd"); Lis 阅读全文
posted @ 2023-01-14 09:27 初见如月 阅读(37) 评论(0) 推荐(0) 编辑
摘要: public static List<String> getMonthBetweenDate(String startTime, String endTime){ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM"); // 声明保存日期集合 阅读全文
posted @ 2023-01-14 09:26 初见如月 阅读(381) 评论(0) 推荐(0) 编辑