From 95aa91fd8e0428c67cc37a86409155c12ad5cf96 Mon Sep 17 00:00:00 2001 From: chenwj113 Date: Tue, 16 May 2023 22:29:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=203d=E7=9A=84model=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- model/sd.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/model/sd.py b/model/sd.py index 1d9e035..534ad32 100644 --- a/model/sd.py +++ b/model/sd.py @@ -19,11 +19,13 @@ class SD(Base): ten = Column(Integer) one = Column(Integer) group_type = Column(Integer) + group_3_span = Column(Integer, comment='组三跨度') code_big = Column(Integer) code_small = Column(Integer) code_single = Column(Integer) code_double = Column(Integer) sum_num = Column(Integer, comment='总和') + sum_num_span = Column(Integer, comment='总和跨度') sum_ten_one = Column(Integer, comment='十位个位和') sum_hundred_ten = Column(Integer, comment='百位十位和') sum_hundred_one = Column(Integer, comment='百位各位和')