xuyonghao
2025-02-08 72a8a0a1ad6b79b8e9fb2facef121f9b5d584666
1
2
3
4
5
6
7
8
9
from sqlalchemy import Column, Integer, String
from app.models.postgresql_base_model import PostgresqlBase
 
class AppToken(PostgresqlBase):
    __tablename__ = "app_service_token"
 
    id = Column(Integer, primary_key=True, index=True)
    token = Column(String, unique=True, index=True)
    app_token = Column(String)