首次提交

This commit is contained in:
2025-09-29 08:52:07 +08:00
commit 6379786d0b
109 changed files with 15030 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.android.nebulasdk.bean;
public class TimeResponse extends BaseBean{
private TimeBean data;
public TimeBean getData() {
return data;
}
public void setData(TimeBean data) {
this.data = data;
}
}