app/src/main/java/cn/flightfeather/thirdappmodule/util/DateUtil.kt
@@ -82,6 +82,18 @@
    }
    /**
     * MM
     */
    fun getMonthStr(date: Date?): String {
        try {
            return getDateStr(date).substring(5, 7)
        } catch (e: Exception) {
            e.printStackTrace()
        }
        return ""
    }
    /**
     * dd
     */
    fun getDayStr(date: Date?): String {