feat: 修改 uploadUserInfo 方法返回可空

This commit is contained in:
yangxisong 2025-12-09 16:18:06 +08:00
parent 9c6f181097
commit 3e8feb8ff0
3 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,9 @@ import com.yuanxuan.tracking_point.library.http.bean.UserInfo
*/
fun interface ITrackingPointUserInfo {
fun uploadUserInfo(): UserInfo
/**
* 未登录返回null
*/
fun uploadUserInfo(): UserInfo?
}