1
2
3
4
5
6
7
8
9
package cn.flightfeather.supervision.common.utils
 
import com.google.gson.Gson
import com.google.gson.GsonBuilder
 
object JsonUtil {
 
    val gson: Gson = GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create()
}