🆗 修改日志打印为slf4j

This commit is contained in:
jimlee
2023-04-23 10:25:54 +08:00
parent dc9ab0d4ee
commit e26ef9fa3b
6 changed files with 27 additions and 42 deletions

View File

@@ -364,7 +364,13 @@ data class DakaResponse(
var result: String? = null,
var comment: String? = null,
var data: String? = null
)
) {
override fun toString(): String {
return "DakaResponse(result=$result, comment=$comment, data=$data)"
}
}
class WebResult<T> protected constructor() : java.io.Serializable {
var data: T? = null