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='创建时间')