系统设置表
| 259 | |
| 260 | |
| 261 | class Setting(Base): |
| 262 | """系统设置表""" |
| 263 | __tablename__ = 'settings' |
| 264 | |
| 265 | key = Column(String(100), primary_key=True) |
| 266 | value = Column(Text) |
| 267 | description = Column(Text) |
| 268 | category = Column(String(50), default='general') # 'general', 'email', 'proxy', 'openai' |
| 269 | updated_at = Column(DateTime, default=utcnow_naive, onupdate=utcnow_naive) |
| 270 | |
| 271 | |
| 272 | class CpaService(Base): |
no outgoing calls