每日数据
| 4 | |
| 5 | |
| 6 | class DailyData(BaseModel): |
| 7 | """每日数据""" |
| 8 | |
| 9 | gameId: int |
| 10 | userId: int |
| 11 | serverId: str |
| 12 | roleId: str |
| 13 | roleName: str |
| 14 | signInTxt: str |
| 15 | hasSignIn: bool |
| 16 | |
| 17 | |
| 18 | class SignInGoodsConfig(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected