mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 07:37:24 +08:00
16 lines
228 B
Python
16 lines
228 B
Python
|
from liteyuki.internal.base.data import *
|
||
|
|
||
|
|
||
|
class People(LiteModel):
|
||
|
TABLE_NAME: str = "people"
|
||
|
name: str = ""
|
||
|
age: int = 0
|
||
|
sex: str = ""
|
||
|
identity: str = ""
|
||
|
|
||
|
|
||
|
db = Database("data/test/test.ldb")
|
||
|
|
||
|
db.where()
|
||
|
|