From d8717888917eccc72bea89ce1a27e1967e2912fa Mon Sep 17 00:00:00 2001 From: chenwj113 Date: Tue, 2 May 2023 11:01:45 +0800 Subject: [PATCH] =?UTF-8?q?bugfix:=20=E4=BF=AE=E5=A4=8D=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/pls.py | 2 +- model/plw.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/model/pls.py b/model/pls.py index 2e01869..b293d0f 100644 --- a/model/pls.py +++ b/model/pls.py @@ -7,7 +7,7 @@ Base = declarative_base() metadata = Base.metadata -class Pl(Base): +class PLS(Base): __tablename__ = 'pls' __table_args__ = {'comment': '排列三统计表'} diff --git a/model/plw.py b/model/plw.py index d606564..5d1142b 100644 --- a/model/plw.py +++ b/model/plw.py @@ -7,7 +7,7 @@ Base = declarative_base() metadata = Base.metadata -class Plw(Base): +class PLW(Base): __tablename__ = 'plw' __table_args__ = {'comment': '排列五统计表'}