|
|
# 破产信息-公开案件
|
|
|
# 破产重整
|
|
|
|
|
|
# 存储信息
|
|
|
aliyun-mysql-rds
|
... | ... | @@ -53,10 +53,53 @@ CREATE TABLE `bankruptcy_public_cases_list` ( |
|
|
KEY `idx_party_name` (`party_name`),
|
|
|
KEY `idx_company_name_digest` (`company_name_digest`)
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='破产信息-当事人表';
|
|
|
|
|
|
CREATE TABLE `bankruptcy_public_announcement` (
|
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键自增',
|
|
|
`debtor_info` text DEFAULT NULL COMMENT '债务人信息(包含名字与digest的json)',
|
|
|
`title` varchar(100) DEFAULT NULL COMMENT '公告标题',
|
|
|
`court_name` varchar(255) DEFAULT NULL COMMENT '公开人',
|
|
|
`article` longtext COMMENT '公告内容',
|
|
|
`publish_date` varchar(255) DEFAULT NULL COMMENT '公告日期',
|
|
|
`annc_typename` varchar(127) DEFAULT NULL COMMENT '公告类型名称',
|
|
|
`case_type` varchar(50) DEFAULT NULL COMMENT '关联案件类型',
|
|
|
`case_code` varchar(100) NOT NULL COMMENT '案号',
|
|
|
`contact_person` varchar(50) DEFAULT NULL COMMENT '联系人',
|
|
|
`contact_info` varchar(50) DEFAULT NULL COMMENT '联系方式',
|
|
|
`deadline` datetime DEFAULT NULL COMMENT '报名截止时间(招募公告)',
|
|
|
`holding_time` datetime DEFAULT NULL COMMENT '召开时间(债权人会议公告)',
|
|
|
`url` varchar(255) NOT NULL COMMENT '链接',
|
|
|
`annex_url` varchar(255) DEFAULT NULL COMMENT '附件链接',
|
|
|
`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|
|
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
|
|
|
`use_flag` tinyint(4) 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='破产信息-公开公告表';
|
|
|
|
|
|
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='破产信息-裁判文书表';
|
|
|
```
|
|
|
# 数据字典
|
|
|
|
|
|
## 主表
|
|
|
## 破产信息-公开案件
|
|
|
| Tables | 字段 | 类型 | 长度 | 是否为空 | 字段说明 |
|
|
|
|-------------------------|-----------------------------|------------------|-------|------|--------------------------|
|
|
|
| bankruptcy_public_cases | id | int(10) unsigned | | NO | 主键自增 |
|
... | ... | @@ -91,20 +134,71 @@ CREATE TABLE `bankruptcy_public_cases_list` ( |
|
|
| bankruptcy_public_cases_list | create_time | datetime | | YES | 创建时间 |
|
|
|
| bankruptcy_public_cases_list | update_time | datetime | | YES | 更新时间 |
|
|
|
|
|
|
## 破产信息-公开公告表
|
|
|
| Tables | 字段 | 类型 | 长度 | 是否为空 | 字段说明 |
|
|
|
|--------------------------------|----------------|------------------|------------|------|-------------------------|
|
|
|
| bankruptcy_public_announcement | id | int(10) unsigned | | NO | 主键自增 |
|
|
|
| bankruptcy_public_announcement | debtor_info | text | 65535 | YES | 债务人信息(包含名字与digest的json) |
|
|
|
| bankruptcy_public_announcement | title | varchar(100) | 100 | YES | 公告标题 |
|
|
|
| bankruptcy_public_announcement | court_name | varchar(255) | 255 | YES | 公开人 |
|
|
|
| bankruptcy_public_announcement | article | longtext | 4294967295 | YES | 公告内容 |
|
|
|
| bankruptcy_public_announcement | publish_date | varchar(255) | 255 | YES | 公告日期 |
|
|
|
| bankruptcy_public_announcement | annc_typename | varchar(127) | 127 | YES | 公告类型名称 |
|
|
|
| bankruptcy_public_announcement | case_type | varchar(50) | 50 | YES | 关联案件类型 |
|
|
|
| bankruptcy_public_announcement | case_code | varchar(100) | 100 | NO | 案号 |
|
|
|
| bankruptcy_public_announcement | contact_person | varchar(50) | 50 | YES | 联系人 |
|
|
|
| bankruptcy_public_announcement | contact_info | varchar(50) | 50 | YES | 联系方式 |
|
|
|
| bankruptcy_public_announcement | deadline | datetime | | YES | 报名截止时间(招募公告) |
|
|
|
| bankruptcy_public_announcement | holding_time | datetime | | YES | 召开时间(债权人会议公告) |
|
|
|
| bankruptcy_public_announcement | url | varchar(255) | 255 | NO | 链接 |
|
|
|
| bankruptcy_public_announcement | annex_url | varchar(255) | 255 | YES | 附件链接 |
|
|
|
| bankruptcy_public_announcement | create_time | datetime | | YES | 创建时间 |
|
|
|
| bankruptcy_public_announcement | update_time | datetime | | YES | 更新时间 |
|
|
|
| bankruptcy_public_announcement | use_flag | tinyint(4) | | YES | 是否删除,0 非删除,10 删除 |
|
|
|
|
|
|
## 破产信息-裁判文书表
|
|
|
| Tables | 字段 | 类型 | 长度 | 是否为空 | 字段说明 |
|
|
|
|-----------------------------|--------------|------------------|------------|------|------------------|
|
|
|
| bankruptcy_judicative_paper | id | int(10) unsigned | | NO | 主键自增 |
|
|
|
| bankruptcy_judicative_paper | case_code | varchar(100) | 100 | NO | 案号 |
|
|
|
| bankruptcy_judicative_paper | title | varchar(100) | 100 | YES | 文书标题 |
|
|
|
| bankruptcy_judicative_paper | court_name | varchar(100) | 100 | YES | 法院名称 |
|
|
|
| bankruptcy_judicative_paper | doc_content | longtext | 4294967295 | YES | 文书详情 |
|
|
|
| bankruptcy_judicative_paper | publish_date | varchar(255) | 255 | YES | 公告日期 |
|
|
|
| bankruptcy_judicative_paper | case_type | varchar(50) | 50 | YES | 关联案件类型 |
|
|
|
| bankruptcy_judicative_paper | url | varchar(255) | 255 | NO | 链接 |
|
|
|
| bankruptcy_judicative_paper | create_time | datetime | | YES | 创建时间 |
|
|
|
| bankruptcy_judicative_paper | update_time | datetime | | YES | 更新时间 |
|
|
|
| bankruptcy_judicative_paper | use_flag | tinyint(4) | | YES | 是否删除,0 非删除,10 删除 |
|
|
|
|
|
|
|
|
|
# 样例
|
|
|
## 破产信息-公开案件
|
|
|
| id | case_code | case_type | court_name | applicant_info | respondent_info | manager_organization | manager_organization_digest | manager_organization_id | principal_manager | publish_date | url | create_time | update_time | use_flag |
|
|
|
|----|------------------|-----------|--------------|-----------------------------------------------------------------------------------|------------------------------------------------------------------------------------|----------------------|-----------------------------|-------------------------|-------------------|-----------------|----------------------------------------------------------------------------------|-----------------|-----------------|----------|
|
|
|
| 1 | (2020)粤03破申826号 | 破产审查案件 | 广东省深圳市中级人民法院 | [{"name": "", "applicant_digest": null}] | [{"name": "", "respondent_digest": null}] | | | | | 2020/12/24 0:00 | http://pccz.court.gov.cn/pcajxxw/gkaj/gkajxq?id=4421750AE2BC7A03CDD35AA9B9D0C32B | 2022/6/13 18:00 | 2022/6/13 18:00 | 0 |
|
|
|
| 2 | (2017)鲁08破申5号 | 破产审查案件 | 山东省济宁市中级人民法院 | [{"name": "山东鲁抗医药进出口公司清算组", "applicant_digest": null}] | [{"name": "山东鲁抗医药进出口公司", "respondent_digest": "b287fdc41df75e3205a53a3cd015ac46"}] | | | | | 2017/11/8 0:00 | http://pccz.court.gov.cn/pcajxxw/gkaj/gkajxq?id=CAFB74A311AB4F9C5E12BBB9046E88EE | 2022/6/13 18:01 | 2022/6/13 18:01 | 0 |
|
|
|
| 3 | (2021)苏0924破申22号 | 破产审查案件 | 射阳县人民法院 | [{"name": "射阳县金诚担保有限公司", "applicant_digest": "d27117885a95de778a95a50f663b7d1d"}] | [{"name": "江苏宏发纺织有限公司", "respondent_digest": "e02a1e8ec7afc7240eb2258b4a0e5fbe"}] | | | | | 2021/5/7 0:00 | http://pccz.court.gov.cn/pcajxxw/gkaj/gkajxq?id=FF8F7F5EA38017B757413E1E81348983 | 2022/6/13 18:01 | 2022/6/13 18:01 | 0 |
|
|
|
|
|
|
|
|
|
## 当事人表
|
|
|
| id | unique_id | case_code | party_name | party_role_type | party_type | company_name_digest | company_id | publish_date | use_flag | create_time | update_time |
|
|
|
|----|----------------------------------|------------------|----------------|-----------------|------------|----------------------------------|----------------------------------|----------------|----------|-----------------|-----------------|
|
|
|
| 1 | 488d1f663e869490aefee057f0963e78 | (2017)鲁08破申5号 | 山东鲁抗医药进出口公司 | 1 | 1 | b287fdc41df75e3205a53a3cd015ac46 | 0f4f6e18b8fd76903bebeb6054cd3d52 | 2017/11/8 0:00 | 0 | 2022/6/13 18:01 | 2022/6/13 18:01 |
|
|
|
| 2 | edda088c492b9528bf02f9e39b4098f2 | (2017)鲁08破申5号 | 山东鲁抗医药进出口公司清算组 | 0 | 1 | | | 2017/11/8 0:00 | 0 | 2022/6/13 18:01 | 2022/6/13 18:01 |
|
|
|
| 3 | 23450c4bb980dd3525cddcc5bf26bd36 | (2021)苏0924破申22号 | 射阳县金诚担保有限公司 | 0 | 1 | d27117885a95de778a95a50f663b7d1d | 2c7c6d7070bc0a6fbab0b843e5ad15a6 | 2021/5/7 0:00 | 0 | 2022/6/13 18:01 | 2022/6/13 18:01 |
|
|
|
|
|
|
## 破产信息-公开公告表
|
|
|
| id | debtor_info | title | court_name | article | publish_date | annc_typename | case_type | case_code | contact_person | contact_info | deadline | holding_time | url | annex_url | create_time | update_time | use_flag |
|
|
|
|----|-------------------------------------------------------------------------------------|-----------------------|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|---------------|-----------|-----------------|----------------|--------------|----------|--------------|--------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|---------------------|----------|
|
|
|
| 8 | [{"name": "福建岩坤石业有限公司", "debtor_digest": "92b6cf44c321fc1e414b58f2fdc767df"}] | 福建岩坤石业有限公司受理破产案件公告 | 福建泉中律师事务所 | <div class="detail_text" id="printDiv"><p align="justify" style="margin: 0pt; text-align: justify; line-height: 28pt; text-indent: 32pt; -ms-text-justify: inter-ideograph; mso-char-indent-count: 2.0000; mso-line-height-rule: exactly;"><span style="font-family:宋体"><span style='font-family: 仿宋_GB2312; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>泉州市中级人民法院</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>根据</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体; mso-bidi-font-family: 宋体;'>福建省南安市星磊石材进出口有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>的申请,于201</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>9</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>年9月</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>3</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>日裁定受理</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>破产清算一案,并经随机摇号指定</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体; mso-bidi-font-family: 宋体;'>福建泉中律师事务所</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>担任</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体; mso-bidi-font-family: 宋体;'>的</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>管理人。</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>的债权人应于201</span></span><span style='font-family: "Times New Roman"; font-size: 16pt; mso-spacerun: "yes"; mso-bidi-font-family: 宋体; mso-fareast-font-family: 仿宋_GB2312;'>9</span><span style='font-family: 仿宋_GB2312; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'>年</span><span style='font-family: "Times New Roman"; font-size: 16pt; mso-spacerun: "yes"; mso-bidi-font-family: 宋体; mso-fareast-font-family: 仿宋_GB2312;'>10</span><span style='font-family: 仿宋_GB2312; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'>月</span><span style='font-family: "Times New Roman"; font-size: 16pt; mso-spacerun: "yes"; mso-bidi-font-family: 宋体; mso-fareast-font-family: 仿宋_GB2312;'>8</span><span style="font-family:宋体"><span style='font-family: 仿宋_GB2312; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>日前,向管理人</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>(通讯地址:福建省</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 仿宋;'>泉州市丰泽区田安北路168号金帝大厦四层福建泉中律师事务所</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>;邮政编码:362000;联系人:</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 仿宋;'>庄宏榕、张婕;联系电话:</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 仿宋;'>15959566226、</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 仿宋;'>13665980000、0595-22599070</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>)</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>申报债权,书面说明债权数额、有无财产担保及是否属于连带债权,并提供相关证据材料。未在上述期限内申报债权的,可以在破产财产最后分配前补充申报,但对此前已进行的分配无权要求补充分配,同时要承担为审查和确认补充申报债权所产生的费用。未依法申报债权的,不得依照《中华人民共和国企业破产法》规定的程序行使权利。</span></span></p><p align="justify" style="margin: 0pt; text-align: justify; line-height: 28pt; text-indent: 32pt; -ms-text-justify: inter-ideograph; mso-char-indent-count: 2.0000; mso-line-height-rule: exactly;"><span style="font-family:宋体"><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>第一次债权人会议定于201</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>9</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>年1</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>0</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>月</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>18</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>日</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>下午十五</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 仿宋; mso-bidi-font-family: 宋体;'>时</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>整在福建省泉州市中级人民法院审判楼二楼第九法庭召开。依法申报债权的债权人为债权人会议的成员,有权参加债权人会议。参加会议的债权人系法人或其他组织的,应提交营业执照、法定代表人或负责人身份证明书,如委托代理人出席会议,应提交特别授权委托书、委托代理人的身份证件或律师执业证,委托代理人是律师的还应提交律师事务所的指派函。债权人系自然人的,应提交个人身份证明,如委托代理人出席会议,应提交特别授权委托书、委托代理人的身份证件或律师执业证,委托代理人是律师的还应提交律师事务所的指派函。</span></span></p><p align="justify" style="margin: 0pt; text-align: justify; line-height: 28pt; text-indent: 32pt; -ms-text-justify: inter-ideograph; mso-char-indent-count: 2.0000; mso-line-height-rule: exactly;"><span style="font-family:宋体"><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>的债务人或者财产持有人应当向</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>的</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>管理人清偿债务或交付财产。</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>的股东、实际控制人、董事、监事等执行机构或者决策机构的成员以及其他法律、法规规定的清算义务人应配合</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";'>管理人进行清算,否则应依法承担相应的法律责任。</span></span></p><p style="margin: 0pt; line-height: 28pt; text-indent: 32pt; mso-char-indent-count: 2.0000; mso-line-height-rule: exactly;"><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'>特此公告</span></p><p style="margin: 0pt; line-height: 28pt; text-indent: 32pt; mso-char-indent-count: 2.0000; mso-line-height-rule: exactly;"><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'> </span></p><p align="right" style="margin: 0pt; text-align: right;"><span style="font-family:宋体"><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体;'>福建岩坤石业有限公司</span><span style='color: rgb(0, 0, 0); font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: 宋体; mso-ascii-font-family: 宋体;'>管理人</span></span></p><p align="right" style="margin: 0pt; text-align: right; line-height: 28pt; text-indent: 208pt; mso-char-indent-count: 13.0000; mso-line-height-rule: exactly;"><span style='font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'>二</span><span style='font-family: 微软雅黑; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-ascii-font-family: "Times New Roman";font-family:微软雅黑'>〇</span><span style='font-family: 仿宋_GB2312; font-size: 16pt; mso-spacerun: "yes"; mso-hansi-font-family: "Times New Roman"; mso-bidi-font-family: 宋体; mso-ascii-font-family: "Times New Roman";font-family:宋体'>一九年九月六日</span></p><p></p></div> | 2019-09-06 00:00:00 | 案件公告 | 破产案件 | (2019)闽05破34号 | | | | | http://pccz.court.gov.cn/pcajxxw/pcgg/ggxq?id=B1BF4E04DA2A4609AE14D80E98500B70 | http://pccz.court.gov.cn/filedownload/pcglr/201909/null/B1BF4E04DA2A4609AE14D80E98500B70/f238817ce84d17362b9126ed4cd5a397?fn=%E5%B2%A9%E5%9D%A4%E5%80%BA%E6%9D%83%E7%94%B3%E6%8A%A5%E5%8F%8A%E7%AC%AC%E4%B8%80%E6%AC%A1%E5%80%BA%E6%9D%83%E4%BA%BA%E4%BC%9A%E8% | 2022-06-13 18:16:04 | 2022-06-13 18:16:04 | 0 |
|
|
|
| 9 | [{"name": "福建岩坤石业有限公司", "debtor_digest": "92b6cf44c321fc1e414b58f2fdc767df"}] | (2019)闽05破34号宣告破产公告 | 福建泉中律师事务所 | <div class="detail_text" id="printDiv"><p style="text-align:center;line-height:37px"><span style=";font-family:'Times New Roman';font-size:29px"><span style="font-family:方正小标宋简体">福</span> <span style="font-family:方正小标宋简体">建</span> <span style="font-family:方正小标宋简体">省</span> <span style="font-family:方正小标宋简体">泉</span> <span style="font-family:方正小标宋简体">州</span> <span style="font-family:方正小标宋简体">市</span> <span style="font-family:方正小标宋简体">中</span> <span style="font-family:方正小标宋简体">级</span> <span style="font-family:方正小标宋简体">人</span> <span style="font-family:方正小标宋简体">民</span> <span style="font-family:方正小标宋简体">法</span> <span style="font-family:方正小标宋简体">院</span></span></p><p style="text-align:center;line-height:37px"><span style=";font-family:'Times New Roman';font-size:29px"> </span></p><p style="text-align:center;line-height:37px"><span style=";font-family:'Times New Roman';font-size:29px"><span style="font-family:方正小标宋简体">公</span> <span style="font-family:方正小标宋简体">告</span></span></p><p style="text-align:center;line-height:37px"><span style=";font-family:'Times New Roman';font-size:29px"> </span></p><p style="text-indent:42px;text-align:right;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21px"><span style="font-family:仿宋_GB2312">(</span>2019<span style="font-family:仿宋_GB2312">)闽</span><span style="font-family:Times New Roman">05</span><span style="font-family:仿宋_GB2312">破</span><span style="font-family:Times New Roman">34</span><span style="font-family:仿宋_GB2312">号之一</span></span></p><p style="text-indent:42px;text-align:right;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21px"> </span></p><p style="text-indent:43px;text-align:justify;text-justify:inter-ideograph;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21px">2019<span style="font-family:仿宋_GB2312">年</span><span style="font-family:Times New Roman">9</span><span style="font-family:仿宋_GB2312">月</span><span style="font-family:Times New Roman">3</span><span style="font-family:仿宋_GB2312">日,本院根据福建省南安市星磊石材进出口有限公司的申请,裁定受理</span></span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">破产清算一案。查明</span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">的财产不足以清偿破产费用,该公司及相关人员未向管理人提供</span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">的财产、印章、证照、账簿等,导致无法进行清算。本院认为,</span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">的财产不足以清偿破产费用,管理人申请本院裁定宣告</span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司</span><span style=";font-family:'Times New Roman';font-size:21px"><span style="font-family:仿宋_GB2312">破产并终结破产程序,符合法律规定。依照《中华人民共和国企业破产法》第四十三条、第一百零七条之规定,本院于</span>2019<span style="font-family:仿宋_GB2312">年</span><span style="font-family:Times New Roman">12</span><span style="font-family:仿宋_GB2312">月</span><span style="font-family:Times New Roman">25</span><span style="font-family:仿宋_GB2312">日裁定宣告</span></span><span style="font-family: 'Times New Roman';font-size: 21pxfont-family:仿宋_GB2312">福建岩坤石业有限公司破产并终结福建岩坤石业有限公司破产清算程序。</span></p><p style="text-indent:43px;text-align:justify;text-justify:inter-ideograph;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">特此公告</span></p><p style="text-indent:43px;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21px"> </span></p><p style="text-indent:43px;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21px"> </span></p><p style="text-indent:277px;text-align:right;line-height:37px"><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">二</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:微软雅黑">〇</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">一九年十二月</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">二十</span><span style=";font-family:仿宋_GB2312;font-size:21px">五</span><span style=";font-family:'Times New Roman';font-size:21pxfont-family:仿宋_GB2312">日</span></p><p><br></p></div> | 2019-12-30 00:00:00 | 案件公告 | 破产案件 | (2019)闽05破34号 | | | | | http://pccz.court.gov.cn/pcajxxw/pcgg/ggxq?id=40951BF08E42CAEA5824D37D44A3BCE8 | http://pccz.court.gov.cn/filedownload/pcglr/201912/null/40951BF08E42CAEA5824D37D44A3BCE8/03e23e0be98a82a14fe71ab509cab5dd?fn=%E5%85%AC%E5%91%8A.pdf | 2022-06-13 18:16:04 | 2022-06-13 18:16:04 | 0 |
|
|
|
| 16 | [{"name": "深圳市华联发精密模具发展有限公司", "debtor_digest": "f0627d73aaeff996ba1bc14de4cdce8c"}] | (2014)深中法破字第61号职工债权公示 | 广东华商律师事务所 | <div class="detail_text" id="printDiv"><p style="text-align:center"><strong><span style="font-size:24px;font-family:黑体">深圳市华联发精密模具发展有限公司</span></strong></p><p style="text-align:center"><strong><span style="font-size:24px;font-family:黑体">职工债权公示</span></strong></p><p><strong><span style="font-size:24px;font-family: 仿宋"> </span></strong></p><p style="text-indent: 37px"><span style="font-size:19px;font-family:仿宋">深圳市中级人民法院于<span>2014</span>年<span>12</span>月<span>11</span>日依法受理深圳市华联发精密模具发展有限公司(下称“华联发公司”)申请破产清算一案(案号为(<span>2014</span>)深中法破字第<span>61</span>号),同时指定由广东华商律师事务所担任管理人。</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family:仿宋">经管理人调查,确认截止今日华联发公司尚欠职工债权共<span>12151</span>元(详见附件职工债权清单)。现根据《中华人民共和国企业破产法》第四十八条之规定,予以公示。公示日期自<span>2018</span>年<span>3</span>月<span>24</span>日起至<span>2018</span>年<span>4</span>月<span>7</span>日止。</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family:仿宋">职工从公示之日起十五日内对本公示所附清单记载的债权数额有异议的,可以书面向管理人提出异议。</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family:仿宋">特此公示。</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family: 仿宋"> </span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family: 仿宋"> </span><span style="font-size:19px;font-family:仿宋">深圳市华联发精密模具发展有限公司管理人</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family: 仿宋"> </span><span style="font-size:19px;font-family:仿宋">二〇一八年三月二十二日</span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family: 仿宋"> </span></p><p style="text-indent: 37px"><span style="font-size:19px;font-family: 仿宋"> </span></p><p><span style="font-size: 16px;font-family:仿宋">附:</span></p><p><span style="font-size:16px;font-family:仿宋">1.</span> <span style="font-size:16px;font-family:仿宋">《深圳市华联发精密模具发展有限公司职工债权表》</span></p><p><span style="font-size:16px;font-family:仿宋">2.</span><span style="font-size:16px;font-family:仿宋">管理人联系方式</span></p><p><span style="font-size: 16px;font-family:仿宋">联系人:温律师<span> 0755-83025555</span>;联系地址:深圳市福田区深南大道<span>4011</span>号港中旅大厦<span>23</span>层</span></p><p><span style="font-size:16px;font-family:仿宋"><br clear="all" style=";page-break-before:always"> </span> </p><p style="text-align:center"><span style="font-size:16px;font-family:仿宋"> </span></p><p style="text-align:center"><strong><span style="font-size:24px;font-family:仿宋">深圳市华联发精密模具发展有限公司</span></strong></p><p style="text-align:center"><strong><span style="font-size:24px;font-family:仿宋">职工债权表</span></strong></p><p><strong><span style="font-size:24px;font-family: 仿宋"> </span></strong></p><table border="0" cellspacing="0" cellpadding="0" width="433" style="margin-left: 6px"><tbody><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-color: windowtext;border-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><strong><span style="font-size: 16px;font-family: 宋体">序号</span></strong><strong></strong></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-color: windowtext;border-right-color: windowtext;border-bottom-color: windowtext;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><strong><span style="font-size: 16px;font-family: 宋体">职工</span></strong><strong></strong></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-color: windowtext;border-right-color: windowtext;border-bottom-color: windowtext;border-top-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-left-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><strong><span style="font-size: 16px;font-family: 宋体">债权金额(元)</span></strong><strong></strong></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">1</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">李永宣</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">1229</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">2</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">郭泽聪</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">0</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">3</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">陈惠群</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">99</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">4</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">贺万舟</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">98</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">5</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">严开国</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">196</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">6</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">李锦祥</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">317</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">7</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">黎金水</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">261</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">8</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">林曜锦</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">34</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">9</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">张洪文</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">1273</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">10</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">王轶</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">49</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">11</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">周晶鑫</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">46</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">12</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">杨东林</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">1619</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">13</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">陆永盛</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">1308</span></p></td></tr><tr style=";height:27px"><td width="87" nowrap valign="bottom" style="width: 116px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">14</span></p></td><td width="140" nowrap valign="bottom" style="width: 187px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">李明梅</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">5622</span></p></td></tr><tr style=";height:27px"><td width="227" nowrap colspan="2" valign="bottom" style="width: 303px;border-right-color: windowtext;border-bottom-color: windowtext;border-left-color: windowtext;border-right-width: 1px;border-bottom-width: 1px;border-left-width: 1px;border-top-style: none;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px;font-family: 宋体">合计</span></p></td><td width="206" nowrap valign="bottom" style="width: 275px;border-top-style: none;border-left-style: none;border-bottom-color: windowtext;border-bottom-width: 1px;border-right-color: windowtext;border-right-width: 1px;padding: 0 7px;height: 27px"><p style="text-align:center"><span style="font-size: 16px">12151</span></p></td></tr></tbody></table><p><span style="font-size:16px;font-family:仿宋"> </span></p><p><br></p></div> | 2018-03-23 00:00:00 | 案件公告 | 破产案件 | (2014)深中法破字第61号 | | | | | http://pccz.court.gov.cn/pcajxxw/pcgg/ggxq?id=584EEF8156DA8294EB6E09ADF8E64858 | | 2022-06-13 18:16:04 | 2022-06-13 18:16:04 | 0 |
|
|
|
|
|
|
## 破产信息-裁判文书表
|
|
|
| id | case_code | title | court_name | doc_content | publish_date | case_type | url | create_time | update_time | use_flag |
|
|
|
|----|-----------------|--------------|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------|-----------|--------------------------------------------------------------------------------|---------------------|---------------------|----------|
|
|
|
| 1 | (2018)苏1324破12号 | 终结破产程序-民事裁定书 | 泗洪县人民法院 | <div class="detail_text" id="printDiv" style="margin-bottom:47px;"><title>((((人民法院</title><div class="Section0" style="layout-grid:15.6000pt;"><p class="MsoNormal" align="center" style="text-align:center;line-height:30.0000pt;mso-line-height-rule:exactly;"><b><span style="mso-spacerun:'yes';font-family:方正小标宋简体;letter-spacing:3.0000pt;font-weight:bold;font-size:22.0000pt;mso-font-kerning:0.0000pt;"><font face="方正小标宋简体">江苏省泗洪县人民法院</font></span></b><b><span style="mso-spacerun:'yes';font-family:方正小标宋简体;letter-spacing:3.0000pt;font-weight:bold;font-size:22.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></b></p><p class="MsoNormal" align="center" style="text-align:center;line-height:30.0000pt;mso-line-height-rule:exactly;"><b><span style="mso-spacerun:'yes';font-family:方正小标宋简体;letter-spacing:3.0000pt;font-weight:bold;font-size:22.0000pt;mso-font-kerning:0.0000pt;"><font face="方正小标宋简体">民事裁定书</font></span></b><b><span style="mso-spacerun:'yes';font-family:方正小标宋简体;letter-spacing:3.0000pt;font-weight:bold;font-size:22.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></b></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:25.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋_GB2312;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="margin-right:32.0000pt;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">(</font>2018)苏1324破12号之六</span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" align="right" style="margin-right:32.0000pt;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p> </p></span></p><p class="MsoBodyTextIndent" style="text-indent:32.0000pt;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;color:rgb(0,0,0);text-underline:rgb(0,0,0);font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">申请人:泗洪亿欣工贸有限公司管理人。</font></span><span style="mso-spacerun:'yes';font-family:仿宋;color:rgb(0,0,0);text-underline:rgb(0,0,0);font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;">2020年8月10日,</span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司管理人</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">向本院提出申请,称经本院裁定的《</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司破产财产分配方案</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">》已执行完毕,破产财产最后分配已完结,故请求终结</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司</font></span><span style="mso-spacerun:'yes';font-family:仿宋;color:rgb(0,0,0);font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">破产程序</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">。同时,管理人指出未接收到财务账册、会计凭证等导致无法进行完全清算。</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">本院认为:</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司</font></span><span style="mso-spacerun:'yes';font-family:仿宋;color:rgb(0,0,0);font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">管理人已</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">按照本院裁定认可的破产财产分配方案执行并分配完毕,破产清算工作已经结束。</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">另外,</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">未向管理人提供财务账册导致无法进行完全清算,</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">根据《最高人民法院关于债权人对人员下落不明或者财产状况不清的债务人申请破产清算案件如何处理的批复》规定,</font>“债务人的有关人员不履行法定义务,人民法院可依据有关法律规定追究其相应法律责任;其行为导致无法清算或者造成损失,有关权利人起诉要求其承担相应民事责任的,人民法院应依法予以支持”,故本案破产清算程序终结后,泗洪亿欣工贸有限公司的债权人可另寻合法途径向泗洪亿欣工贸有限公司的有关人员主张权利。根据《中华人民共和国企业破产法》一百二十条第二款之规定,裁定如下: </span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">终结</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">泗洪亿欣工贸有限公司破产程序</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">。</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><font face="仿宋">本裁定自即日起开始生效。</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p> </p></span></p><p class="MsoNormal" style="text-indent:32.0000pt;mso-char-indent-count:2.0000;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">审</font> <font face="仿宋">判</font> <font face="仿宋">长</font> <font face="仿宋">汤卫兵</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" align="right" style="text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">审</font> <font face="仿宋">判</font> <font face="仿宋">员</font> <font face="仿宋">秦</font> <font face="仿宋">雷</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" align="right" style="text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">审</font> <font face="仿宋">判</font> <font face="仿宋">员</font> <font face="仿宋">李</font> <font face="仿宋">伟</font> </span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" align="right" style="margin-right:-18.9000pt;mso-para-margin-right:-1.8000gd;text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="margin-right:-18.9000pt;mso-para-margin-right:-1.8000gd;text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="margin-right:-18.9000pt;mso-para-margin-right:-1.8000gd;text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="margin-right:-8.4000pt;mso-para-margin-right:-0.8000gd;text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"> <font face="仿宋">二</font></span><span style="mso-spacerun:'yes';font-family:仿宋;mso-bidi-font-family:宋体;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">〇</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">二</font></span><span style="mso-spacerun:'yes';font-family:仿宋;mso-bidi-font-family:宋体;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">〇</font></span><span style="mso-spacerun:'yes';font-family:仿宋;mso-bidi-font-family:仿宋_GB2312;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">年八月十二</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">日</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p></p></span></p><p class="MsoNormal" align="right" style="text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><p> </p></span></p><p class="MsoNormal" align="right" style="text-indent:240.0000pt;mso-char-indent-count:15.0000;text-align:right;line-height:30.0000pt;mso-line-height-rule:exactly;"><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:1.0000pt;"><font face="仿宋">书</font> <font face="仿宋">记</font> <font face="仿宋">员</font> <font face="仿宋">刘</font> <font face="仿宋">哲</font></span><span style="mso-spacerun:'yes';font-family:仿宋;font-size:16.0000pt;mso-font-kerning:0.0000pt;"><p></p></span></p></div></div> | 2020-08-20 00:00:00 | 破产案件 | http://pccz.court.gov.cn/pcajxxw/pcws/wsxq?id=6C823B7F2D5F3F5B4DDB2B0B35CCFECC | 2022-06-13 18:00:48 | 2022-06-13 18:00:48 | 0 |
|
|
|
|
|
|
# 说明
|
|
|
|
|
|
* 通过名称或company_name_digest查询当事人表,获取到case_code,通过case_code查询主表的详细信息 |
|
|
\ No newline at end of file |
|
|
* 通过名称或company_name_digest查询当事人表,获取到case_code,通过case_code查询案号相关的详细信息 |
|
|
\ No newline at end of file |