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
  • land_publicity

land_publicity · Changes

Page history
Update land_publicity authored May 26, 2022 by cao jingfeng's avatar cao jingfeng
Hide whitespace changes
Inline Side-by-side
Showing with 0 additions and 0 deletions
+0 -0
  • lake/land_publicity.md lake/land_publicity.md +0 -0
  • No files found.
lake/land_publicity.md 0 → 100644
View page @ 9d06d6d9
# 经营状况-地块公示
# 存储信息
aliyun-mysql-rds
* host: bdp-rds-003.mysql.rds.aliyuncs.com
* port: 3306
* user: **
* password: **
* database: utn_ng_biz_info
# 建表语句
```sql
CREATE TABLE `land_publicity` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键自增',
`unique_id` char(32) NOT NULL COMMENT '唯一索引,根据application_name+land_num+location+title 的md5',
`title` varchar(255) DEFAULT NULL COMMENT '题目',
`district` varchar(100) DEFAULT NULL COMMENT '行政区',
`land_num` varchar(100) DEFAULT NULL COMMENT '宗地编号',
`location` varchar(255) DEFAULT NULL COMMENT '地块位置',
`use_for` varchar(100) DEFAULT NULL COMMENT '土地用途',
`area` varchar(100) DEFAULT NULL COMMENT '土地面积(公顷)',
`project_name` varchar(255) DEFAULT NULL COMMENT '项目名称',
`application_name` varchar(255) DEFAULT NULL COMMENT '受让单位',
`transfer_period` varchar(10) DEFAULT NULL COMMENT '出让年限',
`final_price` varchar(20) DEFAULT NULL COMMENT '成交价',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`public_announcement_period` varchar(100) DEFAULT NULL COMMENT '公示期',
`feedback_method` varchar(255) DEFAULT NULL COMMENT '意见反馈方式',
`contact_organize` varchar(100) DEFAULT NULL COMMENT '联系单位',
`organize_location` varchar(255) DEFAULT NULL COMMENT '单位地址',
`postal_code` varchar(10) DEFAULT NULL COMMENT '邮政编码',
`contact_number` varchar(20) DEFAULT NULL COMMENT '联系电话',
`contact_person` varchar(30) DEFAULT NULL COMMENT '联系人',
`electronic_mail` varchar(100) DEFAULT NULL COMMENT '电子邮件',
`publication_organize` varchar(100) DEFAULT NULL COMMENT '公布单位',
`publication_date` datetime DEFAULT NULL COMMENT '公布日期',
`publication_start_date` datetime DEFAULT NULL COMMENT '开始公布日期',
`publication_end_date` datetime DEFAULT NULL COMMENT '终止公布日期',
`source_url` varchar(255) DEFAULT NULL COMMENT '获取数据url',
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
`use_flag` varchar(32) DEFAULT NULL COMMENT '是否删除,1:删除,10:未删除',
`company_id` char(32) DEFAULT NULL COMMENT '主体唯一键',
`company_digest` char(32) DEFAULT NULL COMMENT '主体唯一键',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_unique_id` (`unique_id`),
KEY `idx_application_name` (`application_name`),
KEY `idx_land_num` (`land_num`),
KEY `idx_location` (`location`),
KEY `idx_title` (`title`),
KEY `idx_company_digest` (`company_digest`),
KEY `idx_update_time` (`update_time`)
) ENGINE=InnoDB AUTO_INCREMENT=271632 DEFAULT CHARSET=utf8 COMMENT='地块公示表';
```
# 数据字典
| Tables | 字段 | 类型 | 长度 | 是否为空 | 字段说明 |
|----------------|----------------------------|------------------|-----|------|------------------------------------------------------|
| land_publicity | id | int(10) unsigned | | NO | 主键自增 |
| land_publicity | unique_id | char(32) | 32 | NO | 唯一索引,根据application_name+land_num+location+title 的md5 |
| land_publicity | title | varchar(255) | 255 | YES | 题目 |
| land_publicity | district | varchar(100) | 100 | YES | 行政区 |
| land_publicity | land_num | varchar(100) | 100 | YES | 宗地编号 |
| land_publicity | location | varchar(255) | 255 | YES | 地块位置 |
| land_publicity | use_for | varchar(100) | 100 | YES | 土地用途 |
| land_publicity | area | varchar(100) | 100 | YES | 土地面积(公顷) |
| land_publicity | project_name | varchar(255) | 255 | YES | 项目名称 |
| land_publicity | application_name | varchar(255) | 255 | YES | 受让单位 |
| land_publicity | transfer_period | varchar(10) | 10 | YES | 出让年限 |
| land_publicity | final_price | varchar(20) | 20 | YES | 成交价 |
| land_publicity | remark | varchar(255) | 255 | YES | 备注 |
| land_publicity | public_announcement_period | varchar(100) | 100 | YES | 公示期 |
| land_publicity | feedback_method | varchar(255) | 255 | YES | 意见反馈方式 |
| land_publicity | contact_organize | varchar(100) | 100 | YES | 联系单位 |
| land_publicity | organize_location | varchar(255) | 255 | YES | 单位地址 |
| land_publicity | postal_code | varchar(10) | 10 | YES | 邮政编码 |
| land_publicity | contact_number | varchar(20) | 20 | YES | 联系电话 |
| land_publicity | contact_person | varchar(30) | 30 | YES | 联 系 人 |
| land_publicity | electronic_mail | varchar(100) | 100 | YES | 电子邮件 |
| land_publicity | publication_organize | varchar(100) | 100 | YES | 公布单位 |
| land_publicity | publication_date | datetime | | YES | 公布日期 |
| land_publicity | publication_start_date | datetime | | YES | 开始公布日期 |
| land_publicity | publication_end_date | datetime | | YES | 终止公布日期 |
| land_publicity | source_url | varchar(255) | 255 | YES | 获取数据url |
| land_publicity | create_time | datetime | | YES | 创建时间 |
| land_publicity | update_time | datetime | | YES | 更新时间 |
| land_publicity | use_flag | varchar(32) | 32 | YES | 是否删除,1:删除,10:未删除 |
| land_publicity | company_id | char(32) | 32 | YES | 主体唯一键 company_digest的md5 |
| land_publicity | company_digest | char(32) | 32 | YES | 主体唯一键 application_name 查api接口得到digest |
# 样例
| id | unique_id | title | district | land_num | location | use_for | area | project_name | application_name | transfer_period | final_price | remark | public_announcement_period | feedback_method | contact_organize | organize_location | postal_code | contact_number | contact_person | electronic_mail | publication_organize | publication_date | publication_start_date | publication_end_date | source_url | create_time | update_time | use_flag | company_id | company_digest |
|--------|----------------------------------|----------------------------|---------------------|---------------|-----------------|----------|--------|-------------------|--------------------|-----------------|-------------|--------|----------------------------|---------------------------------------------------------------------------------------------------|--------------------------|--------------------|-------------|----------------|----------------|-----------------|----------------------|------------------|------------------------|----------------------|-------------------------------------------------------------------------------------------------------------------------------------|-----------------|-----------------|----------|----------------------------------|----------------------------------|
| 258939 | ecad419374d78d8c67f380b2390580aa | 霞浦县自然资源局国有土地划拨用地批前公示 | 福建省 > 宁德市 > 霞浦县 | Mar-22 | 霞浦县三沙镇金洋村 | 交通服务场站用地 | 7.6805 | 霞浦三沙公共停车场 | 霞浦县国有资产投资经营有限公司 | | | | 2022年03月08日-2022年03月18日 | 在公示时限内,任何单位、组织和个人对本公示所列内容有异议的,请以书面材料形式向我局反映。公示期满后,无异议或虽有异议但经审查没有发现存在违反法律法规行为的,我局将依法报有批准权限的人民政府审批。 | 霞浦县九大馆行政服务中心二楼霞浦县自然资源局窗口 | 霞浦县松港街道九大馆行政服务中心二楼 | 355100 | 0593-8575715 | 谢先生刘先生 | | 霞浦县自然资源局 | 2022/3/8 0:00 | 2022/3/8 0:00 | 2022/3/18 0:00 | https://www.landchina.com/landSupplyDetail?id=ab5b1d7e-0cae-4f66-81f0-cc428f637610&type=%E5%9C%B0%E5%9D%97%E5%85%AC%E7%A4%BA&path=0 | 2022/5/25 18:04 | 2022/5/25 18:04 | 0 | 265f1885a97cb3596c4dd51b746ff9e1 | 7c5ea60139c3d48480a9de4a2546a172 |
| 258940 | e8ba90418cefa199cc3583fc01a8fb55 | 福州市长乐区自然资源和规划局国有土地划拨用地批前公示 | 福建省 > 福州市 > 长乐市 | 鹤上花满园周边配套道路工程 | 鹤上镇 | 城镇村道路用地 | 1.1035 | 鹤上花满园周边配套道路工程 | 福州市长乐区城市建设投资控股有限公司 | | | | 2022年03月07日-2022年03月16日 | 在公示时限内,任何单位、组织和个人对本公示所列内容有异议的,请以书面材料形式向我局反映。公示期满后,无异议或虽有异议但经审查没有发现存在违反法律法规行为的,我局将依法报有批准权限的人民政府审批。 | | 福州市长乐区首占行政服务中心 | | 22055051 | 郑 | | 福州市长乐区自然资源和规划局 | 2022/3/7 0:00 | 2022/3/7 0:00 | 2022/3/16 0:00 | https://www.landchina.com/landSupplyDetail?id=4093977f-cf9f-4167-9110-0563b07031bd&type=%E5%9C%B0%E5%9D%97%E5%85%AC%E7%A4%BA&path=0 | 2022/5/25 18:04 | 2022/5/25 18:04 | 0 | f43f636b9dbead33e5be153c025faac6 | 571ebeb6459b53a785bd1d648cb455cf |
| 258941 | f84cd02e03d8f1cb5ec47db718f6c386 | 景东彝族自治县自然资源局国有土地划拨用地批前公示 | 云南省 > 普洱市 > 景东彝族自治县 | 景东县JD260 | 景东原印刷厂和原武警中队所在地 | 文化设施用地 | 0.5416 | 景东县开南书院恢复重建工程建设项目 | 景东彝族自治县文化馆 | | | | 2022年03月08日-2022年03月18日 | 在公示时限内,任何单位、组织和个人对本公示所列内容有异议的,请以书面材料形式向我局反映。公示期满后,无异议或虽有异议但经审查没有发现存在违反法律法规行为的,我局将依法报有批准权限的人民政府审批。 | 景东彝族自治县自然资源局 | 景东县青云路5号 | 676299 | 0879-6226697 | 杨若 | | 景东彝族自治县自然资源局 | 2022/3/8 0:00 | 2022/3/8 0:00 | 2022/3/18 0:00 | https://www.landchina.com/landSupplyDetail?id=07a3a447-cfc7-4c28-a4cc-7f749b64b6ac&type=%E5%9C%B0%E5%9D%97%E5%85%AC%E7%A4%BA&path=0 | 2022/5/25 18:04 | 2022/5/25 18:04 | 0 | f67ddf2532058e02f36ec42037fd94bf | 04ab7a2dfac7b86eec63e44854587201 |
\ No newline at end of file
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