refactor(FuckBaiduAPIBean.java): 使用 Kotlin 重写

This commit is contained in:
GoFly233 2020-08-13 20:06:46 +08:00 committed by HuanChengFly
parent 576a8780bc
commit f3b6b4cd0a
2 changed files with 5 additions and 13 deletions

View File

@ -1,14 +1,6 @@
package com.huanchengfly.tieba.api.models;
package com.huanchengfly.tieba.api.models
public class FuckBaiduAPIBean {
private int status;
private String message;
public int getStatus() {
return status;
}
public String getMessage() {
return message;
}
class FuckBaiduAPIBean {
var status: Int? = null
var message: String? = null
}