2025-02-17 10:34:35 +08:00

26 lines
1.8 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 数据库配置 0910
connection_string = "mysql+pymysql://root:Ccscc_2025@10.1.12.6:3306/contracts?charset=utf8mb4"
type = "MySQL"
product = "MySQL 5.7"
metadata = """
CREATE TABLE `contracts` (
`经办人` VARCHAR(30) comment '示例:中通服建设有限公司综合能源分公司-业务支撑中心-祝瑞敏',
`合同形式` VARCHAR(10) comment '枚举值:单项合同、订单合同、确收单合同、框架子合同、框架合同、结算单',
`所属分公司` VARCHAR(16) comment '枚举值:一分公司、二分公司、三分公司、四分公司、五分公司、六分公司、七分公司、北京分公司、数字基建分公司、上海分公司、智网分公司、河北分公司、综合能源分公司、本部',
`合同名称` VARCHAR(137) comment '可以提取到项目地点、时间、客户名称、专业的相关信息示例2019-2020年株洲政企信息化职称技术配合服务采购订单',
`项目来源` VARCHAR(10) comment '枚举值:招投标、委托、邀标',
`专业` VARCHAR(40) comment '示例:系统集成-信息系统集成服务-楼宇智能化',
`地点` VARCHAR(35) comment '示例:中国-广东省-广州市-天河区',
`客商类型` VARCHAR(45) comment '示例:集团客户-建筑与房地产-建筑与房地产',
`客户名称` VARCHAR(54) comment '示例:广州铁路公安局、中国移动通信集团安徽有限公司宣城分公司',
`合同签订金额(人民币)` float comment '“超大项目”金额大于等于1亿“重大项目”金额大于1000万而小于1亿“一般项目”金额大于500万而小于1000万“小项目”金额小于500万',
`签订日期` date comment '以CURRENT_DATE获取的时间为准作为当前日期',  
`合同有效期(结束)` date comment '示例2001-01-01'
)
"""