Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
K
kb
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 2
    • Issues 2
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • Operations
    • Operations
    • Incidents
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • granite
  • kb
  • Wiki
    • Lake
  • bankruptcy_judicative_paper

bankruptcy_judicative_paper · Changes

Page history
Create lake/bankruptcy_judicative_paper authored Jun 14, 2022 by cao jingfeng's avatar cao jingfeng
Hide whitespace changes
Inline Side-by-side
Showing with 35 additions and 0 deletions
+35 -0
  • lake/bankruptcy_judicative_paper.md lake/bankruptcy_judicative_paper.md +35 -0
  • No files found.
lake/bankruptcy_judicative_paper.md 0 → 100644
View page @ e3cf760f
# 破产信息-裁判文书
# 存储信息
aliyun-mysql-rds
* host: bdp-rds-001.mysql.rds.aliyuncs.com
* port: 3306
* user: **
* password: **
* database: utn_ng_risk
# 建表语句
```sql
CREATE TABLE `bankruptcy_judicative_paper` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`case_code` varchar(100) NOT NULL COMMENT '案号',
`title` varchar(100) DEFAULT NULL COMMENT '文书标题',
`court_name` varchar(100) DEFAULT NULL COMMENT '法院名称',
`doc_content` longtext COMMENT '文书详情',
`publish_date` varchar(255) DEFAULT NULL COMMENT '公告日期',
`case_type` varchar(50) DEFAULT NULL COMMENT '关联案件类型',
`url` varchar(255) NOT NULL COMMENT '链接',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`use_flag` tinyint DEFAULT '0' COMMENT '是否删除,0 非删除,10 删除',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_url` (`url`),
KEY `idx_case_code` (`case_code`),
KEY `idx_update_time` (`update_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='破产信息-裁判文书表';
```
# 数据字典
通过案号与公开案件表,公开公告表关联,获取相关数据
Clone repository
  • README
  • basic_guidelines
  • basic_guidelines
    • basic_guidelines
    • dev_guide
    • project_build
    • 开发流程
  • best_practice
  • best_practice
    • AlterTable
    • RDS
    • azkaban
    • create_table
    • design
    • elasticsearch
    • elasticsearch
      • ES运维
    • logstash
View All Pages