feiyu02
2024-09-10 6c7f45871b93ef26d353a5a3596701ac2f39ed9c
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()
}