时间格式自己定义 传入两个字符串时间
/*** 判断2个时间大小* yyyy-MM-dd 格式可以自己修改* @param startTime yyyy-MM-dd* @param endTime yyyy-MM-dd* @return*/fun getTime(startTime: String, endTime: String): Boolean {//注意:传过来的时间格式必须要和这里填入的时间格式相同val dateFormat = SimpleDateFormat(\"yyyy-MM-dd\")val date1 = dateFormat.parse(startTime) //开始时间val date2 = dateFormat.parse(endTime) //结束时间// 返回结束时间是否小于开始时间return date2.time < date1.time}