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

Last edited by cao jingfeng Jun 14, 2022
Page history
This is an old version of this page. You can view the most recent version or browse the history.

bankruptcy_judicative_paper

破产信息-裁判文书

存储信息

aliyun-mysql-rds
  • host: bdp-rds-001.mysql.rds.aliyuncs.com
  • port: 3306
  • user: **
  • password: **
  • database: utn_ng_risk

建表语句

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