签到奖励物品
| 16 | |
| 17 | |
| 18 | class SignInGoodsConfig(BaseModel): |
| 19 | """签到奖励物品""" |
| 20 | |
| 21 | goodsId: int = 0 |
| 22 | goodsName: str = "" |
| 23 | goodsNum: int = 0 |
| 24 | goodsUrl: str = "" |
| 25 | id: int = 0 |
| 26 | isGain: bool = False |
| 27 | serialNum: int = 0 |
| 28 | signId: int = 0 |
| 29 | |
| 30 | |
| 31 | class SignInInitData(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected