|
|
|
# 破产信息-公开公告
|
|
|
|
|
|
|
|
# 存储信息
|
|
|
|
aliyun-mysql-rds
|
|
|
|
|
|
|
|
* host: bdp-rds-001.mysql.rds.aliyuncs.com
|
|
|
|
* port: 3306
|
|
|
|
* user: **
|
|
|
|
* password: **
|
|
|
|
* database: utn_ng_risk
|
|
|
|
|
|
|
|
# 建表语句
|
|
|
|
|
|
|
|
```sql
|
|
|
|
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='破产信息-公开公告表';
|
|
|
|
```
|
|
|
|
|
|
|
|
# 数据字典
|
|
|
|
| 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 删除 |
|
|
|
|
|
|
|
|
# 样例数据
|
|
|
|
| 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 |
|
|
|
|
# 说明
|
|
|
|
* 通过案号与主表,裁判文书表关联,获取相关信息 |
|
|
|
\ No newline at end of file |