From e8dd62e1f5126e4586bfcbccdb13b4769a6d50d0 Mon Sep 17 00:00:00 2001 From: liuyebo <1515783401@qq.com> Date: Tue, 25 Jun 2024 13:38:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=A1=A8zx=5Focr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- photo_review/entity/zx_ocr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/photo_review/entity/zx_ocr.py b/photo_review/entity/zx_ocr.py index e66ed06..dbbf031 100644 --- a/photo_review/entity/zx_ocr.py +++ b/photo_review/entity/zx_ocr.py @@ -14,6 +14,7 @@ class ZxOcr(Base): id = Column(INTEGER(11), nullable=False, comment='识别批次') cfjaddress = Column(String(200), nullable=False, comment='云存储文件名') content = Column(String(5000), comment='OCR识别内容') + rotation_angle = Column(INTEGER(11), comment='旋转角度') x_offset = Column(INTEGER(11), comment='x轴偏移量') y_offset = Column(INTEGER(11), comment='y轴偏移量') create_time = Column(DateTime, server_default=text("CURRENT_TIMESTAMP"), comment='创建时间')