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