feat(alibabacloud_sample): 在 DBService 中添加 desc 字段

- 在 create_table_sql 中添加 desc 字段,类型为 text
-此修改用于扩展数据库表结构,增加描述信息字段
This commit is contained in:
liuxiaoqing 2025-08-18 11:37:56 +08:00
parent abf030baa6
commit 7b1910a7a7

View File

@ -44,7 +44,8 @@ class DBService:
cyjgxx text NOT NULL, cyjgxx text NOT NULL,
inspectionAmount text NOT NULL, inspectionAmount text NOT NULL,
verify_time text NOT NULL, verify_time text NOT NULL,
file_path text NOT NULL file_path text NOT NULL,
desc text
);""" );"""
c = self.get_conn().cursor() c = self.get_conn().cursor()
c.execute(create_table_sql) c.execute(create_table_sql)