diff --git a/wms/T8_Authorization_from_bpm.php b/wms/T8_Authorization_from_bpm.php index 7c206023..b862a81d 100644 --- a/wms/T8_Authorization_from_bpm.php +++ b/wms/T8_Authorization_from_bpm.php @@ -3,10 +3,7 @@ // $user_id = "M0000"; // $user_password = "M012290493119"; -$user_id = "M0117"; -$user_password = "90493119"; - -echo $validation = get_Auth($user_id, $user_password); +// echo $validation = get_Auth($user_id, $user_password); function get_Auth($user_id = "M0000", $user_password = "M012290493119") { @@ -16,8 +13,9 @@ function get_Auth($user_id = "M0000", $user_password = "M012290493119") // $now = gmdate("YmdHis"); $now = gmdate("YmdHis", strtotime("-2 minutes")); $data = "$user_id." . $now; - $sign = hash_hmac('SHA256', $data, 'B2D6395D2883E26C', false); + $sign = hash_hmac('SHA256', $data, 'A21181F1EE4966D3', false); + // echo $sign; // $apiurl = 'https://erp.masada.com.tw:780/twWebAPI/GetAuth'; $apiurl = 'http://60.244.87.101:880//twWebAPI/GetAuth'; @@ -30,7 +28,7 @@ function get_Auth($user_id = "M0000", $user_password = "M012290493119") "Pwd: $user_password", "TimestampUTC: $now", "Sign: $sign", - "GroupId: TEST" + "GroupId:TEST" ]; $ch = curl_init(); @@ -53,4 +51,4 @@ function get_Auth($user_id = "M0000", $user_password = "M012290493119") curl_close($ch); } // $data = []; -get_Auth(); +// get_Auth(); diff --git a/wms/account-receivable-contract.xlsx b/wms/account-receivable-contract.xlsx new file mode 100644 index 00000000..637c6d7c Binary files /dev/null and b/wms/account-receivable-contract.xlsx differ diff --git a/wms/account-receivable-excel.php b/wms/account-receivable-excel.php index db546b37..72c73f5a 100644 --- a/wms/account-receivable-excel.php +++ b/wms/account-receivable-excel.php @@ -12,19 +12,63 @@ $array_data = array(); $Bill = json_decode(file_get_contents("php://input"), true); $spreadsheet = new Spreadsheet(); $sheet = $spreadsheet->getActiveSheet(); -// file_put_contents('account-receivable.txt', json_encode($Bill)); -if ($type == 'facility') { + +if ($type == 'newContract') { + $excel_array = array(); + $colomnHeader = [ + '合約號', '客戶名稱', '營業員', '合約金額', '台數', '作番狀態', '催收金額', '催收次數', '訂金催收金額', '訂金催收次數', '二次款催收金額', '二次款催收次數', + '貨抵工地款催收金額', '貨抵工地款催收次數', + '安裝款催收金額', '安裝款催收次數', + '試車款催收金額', '試車款催收次數', + '官檢驗收催收金額', '官檢驗收催收次數', + '交車款催收金額', '交車款催收次數', + '尾款催收金額', '尾款催收次數' + ]; + foreach ($Bill as $key => $value) { + $excel_array[$key] = [ + $value[0], $value[3], $value[8], $value[11], $value[19], $value[20], $value[17], $value[18], $value[26], $value[27], $value[33], $value[34], + $value[40], $value[41], + $value[47], $value[48], + $value[54], $value[55], + $value[61], $value[62], + $value[68], $value[69], + $value[75], $value[76] + ]; + } + + file_put_contents('account-receivable.txt', json_encode($excel_array, JSON_UNESCAPED_UNICODE)); + $sheet->fromArray($colomnHeader, NULL, 'A1'); + $rowIndex = 2; + foreach ($excel_array as $item) { + $sheet->fromArray($item, NULL, 'A' . $rowIndex); + $column = [ + 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X' + ]; + foreach ($column as $col) { + if ($col == 'F') { + $sheet->getColumnDimension('F')->setWidth(35); + $sheet->getStyle('F')->getAlignment()->setWrapText(true); + } else { + $sheet->getColumnDimension($col)->setAutoSize(true); + } + } + $rowIndex++; + } + $writer = new Xlsx($spreadsheet); + $excelFileName = 'account-receivable-contract.xlsx'; + $writer->save($excelFileName); +} elseif ($type == 'facility') { $colomnHeader = [ - 'T8單據日期','作番號', '合約號', '部門', '經理', '營業員', '客戶名稱', '統一編號', '聯絡地址', '抬頭', - '訂金名稱', '訂金合約金額', '訂金應收日期', '訂金目前應收金額','訂金已開金額','訂金未開金額', '訂金已收金額', '訂金催收金額', '訂金催收次數', - '二次款名稱', '二次款合約金額', '二次款應收日期', '二次款目前應收金額','二次款已開金額','二次款未開金額', '二次款已收金額', '二次款催收金額', '二次款催收次數', - '貨抵工地款名稱', '貨抵工地款合約金額', '貨抵工地款應收日期', '貨抵工地款目前應收金額','貨抵工地款已開金額','貨抵工地款未開金額', '貨抵工地款已收金額', '貨抵工地款催收金額', '貨抵工地款催收次數', - '安裝款名稱', '安裝款合約金額', '安裝款應收日期', '安裝款目前應收金額','安裝款已開金額','安裝款未開金額', '安裝款已收金額', '安裝款催收金額', '安裝款催收次數', - '試車款名稱', '試車款合約金額', '試車款應收日期', '試車款目前應收金額','試車款已開金額','試車款未開金額', '試車款已收金額', '試車款催收金額', '試車款催收次數', - '官檢款名稱', '官檢款合約金額', '官檢款應收日期', '官檢款目前應收金額','官檢款已開金額','官檢款未開金額', '官檢款已收金額', '官檢款催收金額', '官檢款催收次數', - '交車款名稱', '交車款合約金額', '交車款應收日期', '交車款目前應收金額','交車款已開金額','交車款未開金額', '交車款已收金額', '交車款催收金額', '交車款催收次數', - '尾款名稱', '尾款金額', '尾款應收日期', '尾款應收金額','尾款已開金額','尾款未開金額', '尾款已收金額', '尾款催收金額', '尾款催收次數', - '作番狀態', '合約-設備金額','合約-安裝金額','作番合約總金額', '作番總應收金額' + 'T8單據日期', '作番號', '合約號', '部門', '經理', '營業員', '客戶名稱', '統一編號', '聯絡地址', '抬頭', + '訂金名稱', '訂金合約金額', '訂金應收日期', '訂金目前應收金額', '訂金已開金額', '訂金未開金額', '訂金已收金額', '訂金催收金額', '訂金催收次數', + '二次款名稱', '二次款合約金額', '二次款應收日期', '二次款目前應收金額', '二次款已開金額', '二次款未開金額', '二次款已收金額', '二次款催收金額', '二次款催收次數', + '貨抵工地款名稱', '貨抵工地款合約金額', '貨抵工地款應收日期', '貨抵工地款目前應收金額', '貨抵工地款已開金額', '貨抵工地款未開金額', '貨抵工地款已收金額', '貨抵工地款催收金額', '貨抵工地款催收次數', + '安裝款名稱', '安裝款合約金額', '安裝款應收日期', '安裝款目前應收金額', '安裝款已開金額', '安裝款未開金額', '安裝款已收金額', '安裝款催收金額', '安裝款催收次數', + '試車款名稱', '試車款合約金額', '試車款應收日期', '試車款目前應收金額', '試車款已開金額', '試車款未開金額', '試車款已收金額', '試車款催收金額', '試車款催收次數', + '官檢款名稱', '官檢款合約金額', '官檢款應收日期', '官檢款目前應收金額', '官檢款已開金額', '官檢款未開金額', '官檢款已收金額', '官檢款催收金額', '官檢款催收次數', + '交車款名稱', '交車款合約金額', '交車款應收日期', '交車款目前應收金額', '交車款已開金額', '交車款未開金額', '交車款已收金額', '交車款催收金額', '交車款催收次數', + '尾款名稱', '尾款金額', '尾款應收日期', '尾款應收金額', '尾款已開金額', '尾款未開金額', '尾款已收金額', '尾款催收金額', '尾款催收次數', + '作番狀態', '合約-設備金額', '合約-安裝金額', '作番合約總金額', '作番總應收金額' ]; $sheet->fromArray($colomnHeader, NULL, 'A1'); $rowIndex = 2; @@ -34,7 +78,7 @@ if ($type == 'facility') { $column = [ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI', 'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AV', 'AW', 'AX', 'AY', 'AZ', - 'BA', 'BB', 'BC', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BK', 'BL', 'BM', 'BN', 'BO', 'BP','BQ','BR','BK' + 'BA', 'BB', 'BC', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BK', 'BL', 'BM', 'BN', 'BO', 'BP', 'BQ', 'BR', 'BK' ]; foreach ($column as $col) { $sheet->getColumnDimension($col)->setAutoSize(true); @@ -47,16 +91,16 @@ if ($type == 'facility') { $writer->save($excelFileName); } else { $colomnHeader = [ - 'T8單據日期','合約號', '部門', '經理', '營業員', '客戶名稱', '統一編號', '聯絡地址', '抬頭', - '訂金', '訂金目前應收', '訂金已開票金額','訂金未開票金額', '訂金已收金額', '訂金催收金額', '訂金最大催收次數', '訂金最小催收次數', - '二次款', '二次款目前應收', '二次款已開票金額','二次款未開票金額', '二次款已收金額', '二次款催收金額', '二次款最大催收次數', '二次款最小催收次數', - '貨抵工地款', '貨抵工地款目前應收', '貨抵工地款已開票金額','貨抵工地款未開票金額', '貨抵工地款已收金額', '貨抵工地款催收金額', '貨抵工地款最大催收次數', '貨抵工地款最小催收次數', - '安裝款', '安裝款目前應收', '安裝款已開票金額','安裝款未開票金額', '安裝款已收金額', '安裝款催收金額', '安裝款最大催收次數', '安裝款最小催收次數', - '試車款', '試車款目前應收', '試車款已開票金額','試車款未開票金額', '試車款已收金額', '試車款催收金額', '試車款最大催收次數', '試車款最小催收次數', - '官檢款', '官檢款目前應收', '官檢款已開票金額','官檢款未開票金額', '官檢款已收金額', '官檢款催收金額', '官檢款最大催收次數', '官檢款最小催收次數', - '交車款', '交車款目前應收', '交車款已開票金額','交車款未開票金額', '交車款已收金額', '交車款催收金額', '交車款最大催收次數', '交車款最小催收次數', - '尾款', '尾款目前應收', '尾款已開票金額','尾款未開票金額', '尾款已收金額', '尾款催收金額', '尾款最大催收次數', '尾款最小催收次數', - '合約設備金額','合約安裝金額','合約總金額', '目前應收', '已開發票金額', '已收金額', '作番總數', '作番狀態' + 'T8單據日期', '合約號', '部門', '經理', '營業員', '客戶名稱', '統一編號', '聯絡地址', '抬頭', + '訂金', '訂金目前應收', '訂金已開票金額', '訂金未開票金額', '訂金已收金額', '訂金催收金額', '訂金最大催收次數', '訂金最小催收次數', + '二次款', '二次款目前應收', '二次款已開票金額', '二次款未開票金額', '二次款已收金額', '二次款催收金額', '二次款最大催收次數', '二次款最小催收次數', + '貨抵工地款', '貨抵工地款目前應收', '貨抵工地款已開票金額', '貨抵工地款未開票金額', '貨抵工地款已收金額', '貨抵工地款催收金額', '貨抵工地款最大催收次數', '貨抵工地款最小催收次數', + '安裝款', '安裝款目前應收', '安裝款已開票金額', '安裝款未開票金額', '安裝款已收金額', '安裝款催收金額', '安裝款最大催收次數', '安裝款最小催收次數', + '試車款', '試車款目前應收', '試車款已開票金額', '試車款未開票金額', '試車款已收金額', '試車款催收金額', '試車款最大催收次數', '試車款最小催收次數', + '官檢款', '官檢款目前應收', '官檢款已開票金額', '官檢款未開票金額', '官檢款已收金額', '官檢款催收金額', '官檢款最大催收次數', '官檢款最小催收次數', + '交車款', '交車款目前應收', '交車款已開票金額', '交車款未開票金額', '交車款已收金額', '交車款催收金額', '交車款最大催收次數', '交車款最小催收次數', + '尾款', '尾款目前應收', '尾款已開票金額', '尾款未開票金額', '尾款已收金額', '尾款催收金額', '尾款最大催收次數', '尾款最小催收次數', + '合約設備金額', '合約安裝金額', '合約總金額', '目前應收', '已開發票金額', '已收金額', '作番總數', '作番狀態' ]; $sheet->fromArray($colomnHeader, NULL, 'A1'); @@ -67,7 +111,7 @@ if ($type == 'facility') { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'AA', 'AB', 'AC', 'AD', 'AE', 'AF', 'AG', 'AH', 'AI', 'AJ', 'AK', 'AL', 'AM', 'AN', 'AO', 'AP', 'AQ', 'AR', 'AS', 'AT', 'AU', 'AV', 'AW', 'AX', 'AY', 'AZ', 'BA', 'BB', 'BC', 'BD', 'BE', 'BF', 'BG', 'BH', 'BI', 'BJ', 'BK', 'BL', 'BM', 'BN', 'BO', 'BP', 'BQ', 'BR', 'BS', 'BT', 'BU', 'BV', 'BW', 'BX', 'BY', 'BZ', - 'CA','CB','CC','CD' + 'CA', 'CB', 'CC', 'CD' ]; foreach ($column as $col) { if ($col == 'CC') { diff --git a/wms/account-receivable-facility.xlsx b/wms/account-receivable-facility.xlsx index 9c5fbaa6..24109745 100644 Binary files a/wms/account-receivable-facility.xlsx and b/wms/account-receivable-facility.xlsx differ diff --git a/wms/account-receivable-new-index.php b/wms/account-receivable-new-index.php index b5c07277..615366e2 100644 --- a/wms/account-receivable-new-index.php +++ b/wms/account-receivable-new-index.php @@ -7,11 +7,12 @@ $sum_contract = 0; $sum_A40001 = 0; $sum_A40008 = 0; $sum_total_budget = 0; -$average_budget = 0; +$average_facility_budget = 0; $average_A40001 = 0; $average_A40008 = 0; $sum_invoice_budget = 0; $sum_received_budget = 0; +$sum_receivable_budget = 0; $sum_collect_budget = 0; // 主要array @@ -60,39 +61,48 @@ function get_ratio($facilityno, $contractno, $arrayData) } // 查WMS 員工與對應主管 -$sql_manager = "SELECT A.accountid, A.name, A.manager, B.name AS manager_name FROM account AS A -LEFT JOIN account AS B ON A.manager = B.accountid "; -$managers = mysqli_query($link, $sql_manager); -// $find_manager['員工工號'] = array('員工姓名', '主管工號', '主管姓名'); -$find_manager = array(); -if (is_iterable($managers)) { - foreach ($managers as $manager) { - $find_manager[$manager['accountid']] = $manager; - } -} +// $sql_manager = "SELECT A.accountid, A.name, A.manager, B.name AS manager_name FROM account AS A +// LEFT JOIN account AS B ON A.manager = B.accountid "; +// $managers = mysqli_query($link, $sql_manager); +// // $find_manager['員工工號'] = array('員工姓名', '主管工號', '主管姓名'); +// $find_manager = array(); +// if (is_iterable($managers)) { +// foreach ($managers as $manager) { +// $find_manager[$manager['accountid']] = $manager; +// } +// } $follower = find_follow($user_id); // T8所有合約號 -$sql_all_contract = "SELECT MainAll.* , -Person.PersonName, -Dept.DeptName FROM - (SELECT -Main.BillNo, -Main.BillDate, -Main.BizPartnerId, -Biz.ShortName, -Biz.BizPartnerName, -Biz.ContactAddress, -Main.OAmountWithTax, -Main.PersonId, -Main.DeptId, -Main.ModeId, -Main.CurrentState - FROM salSalesOrder AS Main - LEFT JOIN comBusinessPartner AS Biz ON Biz.BizPartnerId = Main.BizPartnerId) AS MainAll - LEFT JOIN comGroupPerson AS Person ON MainAll.PersonId= Person.PersonId - LEFT JOIN comDepartment AS Dept ON MainAll.DeptId= Dept.DeptId - WHERE MainAll.ModeId = 'M' AND (MainAll.CurrentState=2 OR MainAll.CurrentState=4) "; +$sql_all_contract = "SELECT +MainAll.*, +Person.PersonName, +Dept.DeptName, +Dept.LeaderId, +Leader.PersonName AS LeaderName +FROM +( + SELECT + Main.BillNo, + Main.BillDate, + Main.BizPartnerId, + Biz.ShortName, + Biz.BizPartnerName, + Biz.ContactAddress, + Main.OAmountWithTax, + Main.PersonId, + Main.DeptId, + Main.ModeId, + Main.CurrentState + FROM + salSalesOrder AS Main + LEFT JOIN comBusinessPartner AS Biz ON Biz.BizPartnerId = Main.BizPartnerId +) AS MainAll +LEFT JOIN comGroupPerson AS Person ON MainAll.PersonId = Person.PersonId +LEFT JOIN comDepartment AS Dept ON MainAll.DeptId = Dept.DeptId +LEFT JOIN comGroupPerson AS Leader ON Dept.LeaderId = Leader.PersonId +WHERE +MainAll.ModeId = 'M' AND (MainAll.CurrentState = 2 OR MainAll.CurrentState = 4) "; if (!is_null($start_date)) { $start_date = (int)date('Ymd', strtotime($start_date)); $sql_all_contract .= " AND MainAll.BillDate >= $start_date "; @@ -113,6 +123,7 @@ if ((in_array($user_id, array('M0060', 'M0175'))) || (in_array(accountidToDepart $sql_all_contract .= ")"; }; } +$sql_all_contract .= " ORDER BY MainAll.PersonId ASC "; $str_numbers = ""; $query_all_contract = $conn->query($sql_all_contract); if (is_iterable($query_all_contract)) { @@ -130,18 +141,21 @@ if (is_iterable($query_all_contract)) { $arrayData[$contract_numbers['BillNo']]['PersonName'] = isset($contract_numbers['PersonName']) ? $contract_numbers['PersonName'] : '--'; $arrayData[$contract_numbers['BillNo']]['DeptName'] = isset($contract_numbers['DeptName']) ? $contract_numbers['DeptName'] : '--'; $arrayData[$contract_numbers['BillNo']]['ShortName'] = isset($contract_numbers['ShortName']) ? $contract_numbers['ShortName'] : '--'; - $arrayData[$contract_numbers['BillNo']]['ManagerId'] = !empty($find_manager[$contract_numbers['PersonId']]['manager']) ? $find_manager[$contract_numbers['PersonId']]['manager'] : '--'; - $arrayData[$contract_numbers['BillNo']]['ManagerName'] = !empty($find_manager[$contract_numbers['PersonId']]['manager_name']) ? $find_manager[$contract_numbers['PersonId']]['manager_name'] : '--'; + $arrayData[$contract_numbers['BillNo']]['ManagerId'] = isset($contract_numbers['LeaderId']) ? $contract_numbers['LeaderId'] : '--'; + $arrayData[$contract_numbers['BillNo']]['ManagerName'] = isset($contract_numbers['LeaderName']) ? $contract_numbers['LeaderName'] : '--'; $arrayData[$contract_numbers['BillNo']]['invoice_budget'] = 0; $arrayData[$contract_numbers['BillNo']]['received_budget'] = 0; $arrayData[$contract_numbers['BillNo']]['receivable_budget'] = 0; $arrayData[$contract_numbers['BillNo']]['collect_budget'] = 0; $arrayData[$contract_numbers['BillNo']]['A40001'] = 0; $arrayData[$contract_numbers['BillNo']]['A40008'] = 0; + $arrayData[$contract_numbers['BillNo']]['collect_month'] = 0; $arrayData[$contract_numbers['BillNo']]['facility_status'] = ""; $arrayData[$contract_numbers['BillNo']]['facility'] = array(); + $arrayData[$contract_numbers['BillNo']]['facility_num'] = 0; $arrayData[$contract_numbers['BillNo']]['total_budget'] = $contract_numbers['OAmountWithTax']; $sum_total_budget += $contract_numbers['OAmountWithTax']; + $sum_contract += 1; } } $str_numbers .= "('" . implode("','", $contractNumbers) . "')"; @@ -166,6 +180,16 @@ foreach ($query_contract_budget as $contract_budget) { $arrayData[$contract_budget['BillNo']]['facility'][$contract_budget['CU_MaterialId']]['total_budget'] = $contract_budget['OAmountWithTax']; $arrayData[$contract_budget['BillNo']]['facility'][$contract_budget['CU_MaterialId']][$contract_budget['MaterialId']] = $contract_budget['OAmountWithTax']; $arrayData[$contract_budget['BillNo']]['facility'][$contract_budget['CU_MaterialId']]['status'] = ""; + $sum_facility += 1; + $arrayData[$contract_budget['BillNo']]['facility_num'] += 1; + } + switch ($contract_budget['MaterialId']) { + case "A40001": + $sum_A40001 += $contract_budget['OAmountWithTax']; + break; + case "A40008": + $sum_A40008 += $contract_budget['OAmountWithTax']; + break; } } } @@ -194,6 +218,7 @@ foreach ($query_PayStage as $PayStage) { $arrayData[$PayStage['BillNo']]['PayStage'][$PayStage['RowNo']]['PayStage'] = $PayStage['PayStage']; $arrayData[$PayStage['BillNo']]['PayStage'][$PayStage['RowNo']]['PlanPayAmt'] = $PayStage['PlanPayAmt']; $arrayData[$PayStage['BillNo']]['PayStage'][$PayStage['RowNo']]['PlanPayDate'] = $PayStage['PlanPayDate']; + $arrayData[$PayStage['BillNo']]['PayStage'][$PayStage['RowNo']]['stage'] = ''; if (isset($arrayData[$PayStage['BillNo']]['facility']) && is_iterable($arrayData[$PayStage['BillNo']]['facility'])) { foreach ($arrayData[$PayStage['BillNo']]['facility'] as $key => &$value) { $tmpkey = $key . $PayStage['RowNo']; @@ -205,6 +230,7 @@ foreach ($query_PayStage as $PayStage) { } else { $PayStage_array[$PayStage['BillNo']] = $arrayData[$PayStage['BillNo']]['facility'][$key]['PayStage']; } + $arrayData[$PayStage['BillNo']]['facility'][$key]['PayStage'] = array(); } } } @@ -264,25 +290,25 @@ foreach ($query_wip as $wip) { if (isset($arrayData[$wip['contractno']]) && isset($arrayData[$wip['contractno']]['facility'][$wip['facilityno']])) { if ($wip['delivery_date'] != NULL && $wip['delivery_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['delivery_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['delivery_date'] . "已移交"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['delivery_date'] . "已移交) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['delivery_date'] . "已移交) ; "; } elseif ($wip['official_check_date'] != NULL && $wip['official_check_date'] != '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['official_check_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['official_check_date'] . "官檢完畢"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['official_check_date'] . "官檢完畢) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['official_check_date'] . "官檢完畢) ; "; } elseif ($wip['tryrun_end_date'] != NULL && $wip['tryrun_end_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['tryrun_end_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['tryrun_end_date'] . "試車完畢"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['tryrun_end_date'] . "試車完畢) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['tryrun_end_date'] . "試車完畢) ; "; } elseif ($wip['install_end_date'] != NULL && $wip['install_end_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['install_end_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['install_end_date'] . "安裝完畢"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['install_end_date'] . "安裝完畢) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['install_end_date'] . "安裝完畢) ; "; } elseif ($wip['real_arrival_date'] != NULL && $wip['real_arrival_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['real_arrival_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['real_arrival_date'] . "貨抵工地"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['real_arrival_date'] . "貨抵工地) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['real_arrival_date'] . "貨抵工地) ; "; } elseif ($wip['real_contract_arrival_date'] != NULL && $wip['real_contract_arrival_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['real_contract_arrival_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['real_contract_arrival_date'] . "預計出貨"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['real_contract_arrival_date'] . "預計出貨) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['real_contract_arrival_date'] . "預計出貨) ; "; } elseif ($wip['estimated_shipping_date'] != NULL && $wip['estimated_shipping_date'] !== '1970-01-01' && $wip['delivery_date'] !== '1970-01-11' && !empty($wip['estimated_shipping_date'])) { $arrayData[$wip['contractno']]['facility'][$wip['facilityno']]['status'] = $wip['estimated_shipping_date'] . "預計出港"; - $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['estimated_shipping_date'] . "預計出港) "; + $arrayData[$wip['contractno']]['facility_status'] .= $wip['facilityno'] . " (" . $wip['estimated_shipping_date'] . "預計出港) ; "; } } } @@ -294,7 +320,6 @@ $sign0 = array('簽約', '簽訂', '合約簽訂', '訂金'); $arrival = array('貨抵工地', '貨底工地', '工地動工'); $final6 = array('核可函取得後6個月', '得合格函後6個月'); - foreach ($PayStage_array as $key => &$value) { foreach ($value as $paykey => &$payvalue) { if (isset($wip_array[$payvalue['facilityno']])) { @@ -302,11 +327,11 @@ foreach ($PayStage_array as $key => &$value) { case '寶佳出貨前30天': $payvalue['stage'] = '訂金'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time - (30 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $signtime = $estimate_time - (30 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -316,7 +341,7 @@ foreach ($PayStage_array as $key => &$value) { case '寶佳出貨後10天': $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time + (10 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -326,7 +351,7 @@ foreach ($PayStage_array as $key => &$value) { case '貨抵工地後90天': $payvalue['stage'] = '貨抵工地款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time + (90 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -336,7 +361,7 @@ foreach ($PayStage_array as $key => &$value) { case '安裝試車後90天': $payvalue['stage'] = '試車款'; if ($wip_array[$payvalue['facilityno']]['tryrun_end_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['tryrun_end_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['tryrun_end_date'])) { - $estimate_time = strtotime($wip['tryrun_end_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['tryrun_end_date']); $signtime = $estimate_time + (90 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -346,43 +371,53 @@ foreach ($PayStage_array as $key => &$value) { case '交車後270天': $payvalue['stage'] = '尾款'; if ($wip_array[$payvalue['facilityno']]['delivery_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['delivery_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['delivery_date'])) { - $estimate_time = strtotime($wip['delivery_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['delivery_date']); $signtime = $estimate_time + (270 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { $payvalue['PlanPayDate'] = NULL; } break; + case '交車後180天': + $payvalue['stage'] = '尾款'; + if ($wip_array[$payvalue['facilityno']]['delivery_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['delivery_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['delivery_date'])) { + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['delivery_date']); + $signtime = $estimate_time + (180 * 86400); + $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); + } else { + $payvalue['PlanPayDate'] = NULL; + } + break; case (in_array($payvalue['PayStage'], $arrival)): $payvalue['stage'] = '貨抵工地款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); - $signtime = $estimate_time + (10 * 86400); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); + $signtime = $estimate_time; $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { - $payvalue['PlanPayDate'] = NULL; + $payvalue['PlanPayDate'] = 'NULL'; } break; case '二次款': $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { $payvalue['PlanPayDate'] = NULL; } break; - case (stristr($payvalue['PayStage'], '出貨前30') || stristr($payvalue['PayStage'], '簽約(出貨前30天)')): + case (stristr($payvalue['PayStage'], '出貨前30') || stristr($payvalue['PayStage'], '簽約(出貨前30天)') || stristr($payvalue['PayStage'], '建照核發時')): $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time - (30 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $signtime = $estimate_time - (30 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -392,11 +427,11 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '出貨前60')): $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time - (60 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $signtime = $estimate_time - (60 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -406,11 +441,11 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '出貨前90')): $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time - (90 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $signtime = $estimate_time - (90 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { @@ -420,17 +455,23 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '出貨前120')): $payvalue['stage'] = '二次款'; if ($wip_array[$payvalue['facilityno']]['real_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_arrival_date'])) { - $estimate_time = strtotime($wip['real_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_arrival_date']); $signtime = $estimate_time - (120 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } elseif ($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['real_contract_arrival_date'])) { - $estimate_time = strtotime($wip['real_contract_arrival_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['real_contract_arrival_date']); $signtime = $estimate_time - (120 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); } else { $payvalue['PlanPayDate'] = NULL; } break; + case "簽定30天內": + $payvalue['stage'] = '二次款'; + $estimate_time = strtotime($arrayData[$key]['PayStage'][1]['PlanPayDate']); + $signtime = $estimate_time + (30 * 86400); + $payvalue['PlanPayDate'] = date('Y-m-d', $signtime); + break; case (in_array($payvalue['PayStage'], $sign60)): $payvalue['stage'] = '二次款'; $estimate_time = strtotime($arrayData[$key]['PayStage'][1]['PlanPayDate']); @@ -463,7 +504,7 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '試車')): $payvalue['stage'] = '試車款'; if ($wip_array[$payvalue['facilityno']]['tryrun_end_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['tryrun_end_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['tryrun_end_date'])) { - $estimate_time = strtotime($wip['tryrun_end_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['tryrun_end_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { $payvalue['PlanPayDate'] = NULL; @@ -472,7 +513,7 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '安裝') || stristr($payvalue['PayStage'], '貨抵工地且完工')): $payvalue['stage'] = '安裝款'; if ($wip_array[$payvalue['facilityno']]['install_end_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['install_end_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['install_end_date'])) { - $estimate_time = strtotime($wip['install_end_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['install_end_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { $payvalue['PlanPayDate'] = NULL; @@ -481,7 +522,7 @@ foreach ($PayStage_array as $key => &$value) { case (in_array($payvalue['PayStage'], $final6)): $payvalue['stage'] = '尾款'; if ($wip_array[$payvalue['facilityno']]['delivery_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['delivery_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['delivery_date'])) { - $estimate_time = strtotime($wip['delivery_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['delivery_date']); $estimate_time = $estimate_time + (180 * 86400); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { @@ -491,7 +532,7 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '合格') || stristr($payvalue['PayStage'], '驗收') || stristr($payvalue['PayStage'], '驗收')): $payvalue['stage'] = '官檢驗收款'; if ($wip_array[$payvalue['facilityno']]['official_check_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['official_check_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['official_check_date'])) { - $estimate_time = strtotime($wip['official_check_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['official_check_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { $payvalue['PlanPayDate'] = NULL; @@ -500,7 +541,7 @@ foreach ($PayStage_array as $key => &$value) { case (stristr($payvalue['PayStage'], '交車') || stristr($payvalue['PayStage'], '移交') || stristr($payvalue['PayStage'], '完工') || stristr($payvalue['PayStage'], '許可') || stristr($payvalue['PayStage'], '核可')): $payvalue['stage'] = '交車款'; if ($wip_array[$payvalue['facilityno']]['delivery_date'] !== null && strtotime($wip_array[$payvalue['facilityno']]['delivery_date']) > 975686400 && !empty($wip_array[$payvalue['facilityno']]['delivery_date'])) { - $estimate_time = strtotime($wip['delivery_date']); + $estimate_time = strtotime($wip_array[$payvalue['facilityno']]['delivery_date']); $payvalue['PlanPayDate'] = date('Y-m-d', $estimate_time); } else { $payvalue['PlanPayDate'] = NULL; @@ -513,6 +554,9 @@ foreach ($PayStage_array as $key => &$value) { if (strtotime($payvalue['PlanPayDate']) < 975686400) { $payvalue['PlanPayDate'] = NULL; } + } else { + $payvalue['PlanPayDate'] = NULL; + $payvalue['stage'] = "大日程無作番"; } } } @@ -560,12 +604,24 @@ CheckAll.FromSalSalesOrder AS BillNo $query_invoice = $conn->query($sql_invoice); //發票資訊回填到arrayData -foreach($query_invoice as $invoice) { - if(isset($arrayData[$invoice['BillNo']])) { +foreach ($query_invoice as $invoice) { + if (isset($arrayData[$invoice['BillNo']])) { $arrayData[$invoice['BillNo']]['invoice_budget'] += $invoice['LAmountWithTax']; } } +//未在T8的收款資料 +$sql_wms = "SELECT * FROM account_received WHERE type='M' AND BillNo IN $str_numbers"; +$query_wms = mysqli_query($link, $sql_wms); +foreach($query_wms as $wms){ + if (isset($arrayData[$wms['BillNo']]) && isset($arrayData[$wms['BillNo']]['invoice_budget'])) { + $arrayData[$wms['BillNo']]['invoice_budget'] += $wms['invoice_budget']; + } + if (isset($arrayData[$wms['BillNo']]) && isset($arrayData[$wms['BillNo']]['received_budget'])) { + $arrayData[$wms['BillNo']]['received_budget'] += $wms['received_budget']; + } +} + // 核銷資訊 $sql_received = "SELECT CheckDetail.OrderBillNo, @@ -590,8 +646,8 @@ WHERE CheckDetail.ModeId = 'M'"; $query_received = $conn->query($sql_received); // 核銷資訊回填到arrayData -foreach($query_received as $received) { - if(isset($arrayData[$received['OrderBillNo']])) { +foreach ($query_received as $received) { + if (isset($arrayData[$received['OrderBillNo']])) { $arrayData[$received['OrderBillNo']]['received_budget'] += $received['CurrStandOffOAmount']; } } @@ -601,64 +657,781 @@ $today = strtotime(date('Y-m-t')); foreach ($final_paystage as $key => &$value) { $tmpinvoice = $arrayData[$key]['invoice_budget']; $tmpreceived = $arrayData[$key]['received_budget']; - for($sequenceNumber = 1; $sequenceNumber <= count($value); $sequenceNumber++) { - if(isset($value[$sequenceNumber]['PlanPayDate'])) { + for ($sequenceNumber = 1; $sequenceNumber <= count($value); $sequenceNumber++) { + if (isset($value[$sequenceNumber]['PlanPayDate'])) { $collect_month = collect_month(strtotime($value[$sequenceNumber]['PlanPayDate'])); - if($today > strtotime($value[$sequenceNumber]['PlanPayDate'])){ + if ($today > strtotime($value[$sequenceNumber]['PlanPayDate'])) { $value[$sequenceNumber]['hadtopay'] = 'V'; - }else{ + } else { $value[$sequenceNumber]['hadtopay'] = '--'; } - }else{ + } else { $collect_month = 0; $value[$sequenceNumber]['hadtopay'] = '--'; } - if($tmpinvoice >= $value[$sequenceNumber]['PlanPayAmt']){ + if ($tmpinvoice > $value[$sequenceNumber]['PlanPayAmt']) { $value[$sequenceNumber]['invoice_budget'] = $value[$sequenceNumber]['PlanPayAmt']; - $tmpinvoice -= $value[$sequenceNumber]['invoice_budget']; - }else{ + $tmpinvoice = $tmpinvoice - $value[$sequenceNumber]['invoice_budget']; + } elseif ($tmpinvoice > 0) { $value[$sequenceNumber]['invoice_budget'] = $tmpinvoice; $tmpinvoice = 0; + } else { + $value[$sequenceNumber]['invoice_budget'] = 0; } - if($tmpreceived > $value[$sequenceNumber]['PlanPayAmt']){ + if ($tmpreceived > $value[$sequenceNumber]['PlanPayAmt']) { $value[$sequenceNumber]['received_budget'] = $value[$sequenceNumber]['PlanPayAmt']; - $tmpinvoice -= $value[$sequenceNumber]['received_budget']; - }else{ + $tmpreceived -= $value[$sequenceNumber]['received_budget']; + } elseif ($tmpreceived > 0) { $value[$sequenceNumber]['received_budget'] = $tmpreceived; $tmpreceived = 0; + } else { + $value[$sequenceNumber]['received_budget'] = 0; } - if($collect_month >0 && $value[$sequenceNumber]['PlanPayAmt']> $value[$sequenceNumber]['received_budget']){ + if ($collect_month > 0 && $value[$sequenceNumber]['PlanPayAmt'] > $value[$sequenceNumber]['received_budget']) { $value[$sequenceNumber]['collect_month'] = $collect_month; - }else{ + } else { $value[$sequenceNumber]['collect_month'] = 0; } - } } -// foreach ($final_paystage as $key => $value) { -// echo $key." =>
"; -// foreach($value as $key2 => $value2) { -// echo $key2."
"; -// print_r($value2); -// echo "
"; + + + +//合約資料填回arrayData +foreach ($final_paystage as $key => $value) { + for ($sequence = 1; $sequence <= count($value); $sequence++) { + if (isset($arrayData[$key]) && isset($arrayData[$key]['facility']) && isset($arrayData[$key]['facility'][$value[$sequence]['facilityno']]) && isset($arrayData[$key]['facility'][$value[$sequence]['facilityno']]['PayStage'])) { + array_push($arrayData[$key]['facility'][$value[$sequence]['facilityno']]['PayStage'], $value[$sequence]); + foreach ($arrayData[$key]['PayStage'] as $arkey => &$arvalue) { + if ($arvalue['PayStage'] == $value[$sequence]['PayStage']) { + if (isset($arvalue['receivable_budget']) && isset($arvalue['received_budget']) && isset($arvalue['invoice_budget'])) { + $arvalue['received_budget'] += $value[$sequence]['received_budget']; + $arvalue['invoice_budget'] += $value[$sequence]['invoice_budget']; + if ($value[$sequence]['hadtopay'] == 'V') { + $arvalue['receivable_budget'] += $value[$sequence]['PlanPayAmt']; + $arrayData[$key]['receivable_budget'] += $value[$sequence]['PlanPayAmt']; + } else { + $arvalue['receivable_budget'] = 0; + } + if ($arvalue['collect_month'] < $value[$sequence]['collect_month']) { + $arvalue['collect_month'] = $value[$sequence]['collect_month']; + } + $sum_receivable_budget += $value[$sequence]['PlanPayAmt']; + $sum_received_budget += $value[$sequence]['received_budget']; + $sum_invoice_budget += $value[$sequence]['invoice_budget']; + } else { + $arvalue['stage'] = $value[$sequence]['stage']; + if ($value[$sequence]['hadtopay'] == 'V') { + $arvalue['receivable_budget'] = $value[$sequence]['PlanPayAmt']; + $arrayData[$key]['receivable_budget'] += $value[$sequence]['PlanPayAmt']; + } else { + $arvalue['receivable_budget'] = 0; + } + $arvalue['received_budget'] = $value[$sequence]['received_budget']; + $arvalue['invoice_budget'] = $value[$sequence]['invoice_budget']; + $arvalue['collect_month'] = $value[$sequence]['collect_month']; + $sum_receivable_budget += $value[$sequence]['PlanPayAmt']; + $sum_received_budget += $value[$sequence]['received_budget']; + $sum_invoice_budget += $value[$sequence]['invoice_budget']; + } + if ($value[$sequence]['collect_month'] > $arrayData[$key]['collect_month']) { + $arrayData[$key]['collect_month'] = $value[$sequence]['collect_month']; + } + } + } + } + } +} + +$average_A40001 = $sum_A40001 / $sum_facility; +$average_A40008 = $sum_A40008 / $sum_facility; +$average_facility_budget = $sum_total_budget / $sum_facility; +$average_contract_budget = $sum_total_budget / $sum_contract; +$average_contract_facility = $sum_facility / $sum_contract; + + +// excel 結果 +// 0 合約號; 1 單據日期; 2 客戶編號; 3 客戶名稱; 4 客戶地址; 5 部門ID; 6 部門名稱; 7 營業員工號; 8 營業員名稱; 9 部門主管工號; 10 部門主管名稱; +// 11 合約總金額; 12 A40001總金額; 13 A40008總金額; 14 目前應收金額; 15 已開發票金額; 16 已收金額; 17 催收金額; 18 催收次數; 19 作番總數; 20 作番狀態 +// 21 訂金名稱; 22 訂金金額; 23 應收金額; 24 已開發票金額; 25 已收金額; 26 催收金額; 27 催收次數; +// 28 二次款名稱; 29 二次款金額; 30 應收金額; 31 已開發票金額; 32 已收金額; 33 催收金額; 34 催收次數; +$excel_contract_array = array(); +$excel_contract_boga_array = array(); +$excel_contract_noboga_array = array(); + +$excel_facility_array = array(); +foreach ($arrayData as $key => $value) { + + $excel_contract_array[$key] = array_fill(0, 76, ''); + $excel_contract_array[$key][0] = (isset($value['BillNo']) && !is_null($value['BillNo'])) ? $value['BillNo'] : ''; + $excel_contract_array[$key][1] = (isset($value['BillDate']) && !is_null($value['BillDate'])) ? $value['BillDate'] : ''; + $excel_contract_array[$key][2] = (isset($value['CustomerId']) && !is_null($value['CustomerId'])) ? $value['CustomerId'] : ''; + $excel_contract_array[$key][3] = (isset($value['CustomerName']) && !is_null($value['CustomerName'])) ? $value['CustomerName'] : ''; + $excel_contract_array[$key][4] = (isset($value['CustomerAddress']) && !is_null($value['CustomerAddress'])) ? $value['CustomerAddress'] : ''; + $excel_contract_array[$key][5] = (isset($value['DeptId']) && !is_null($value['DeptId'])) ? $value['DeptId'] : ''; + $excel_contract_array[$key][6] = (isset($value['DeptName']) && !is_null($value['DeptName'])) ? $value['DeptName'] : ''; + $excel_contract_array[$key][7] = (isset($value['PersonId']) && !is_null($value['PersonId'])) ? $value['PersonId'] : ''; + $excel_contract_array[$key][8] = (isset($value['PersonName']) && !is_null($value['PersonName'])) ? $value['PersonName'] : ''; + $excel_contract_array[$key][9] = (isset($value['ManagerId']) && !is_null($value['ManagerId'])) ? $value['ManagerId'] : ''; + $excel_contract_array[$key][10] = (isset($value['ManagerName']) && !is_null($value['ManagerName'])) ? $value['ManagerName'] : ''; + $excel_contract_array[$key][11] = (isset($value['OAmountWithTax']) && !is_null($value['OAmountWithTax'])) ? number_format(round($value['OAmountWithTax'])) : '0'; + $excel_contract_array[$key][12] = (isset($value['A40001']) && !is_null($value['A40001'])) ? number_format(round($value['A40001'])) : '0'; + $excel_contract_array[$key][13] = (isset($value['A40008']) && !is_null($value['A40008'])) ? number_format(round($value['A40008'])) : '0'; + $excel_contract_array[$key][14] = (isset($value['receivable_budget']) && !is_null($value['receivable_budget'])) ? $value['receivable_budget'] : 0; + $excel_contract_array[$key][15] = (isset($value['invoice_budget']) && !is_null($value['invoice_budget'])) ? number_format(round($value['invoice_budget'])) : '0'; + $excel_contract_array[$key][16] = (isset($value['received_budget']) && !is_null($value['received_budget'])) ? $value['received_budget'] : 0; + $excel_contract_array[$key][17] = number_format(round($excel_contract_array[$key][14] - $excel_contract_array[$key][16])); + $excel_contract_array[$key][18] = (isset($value['collect_month']) && !is_null($value['collect_month'])) ? number_format(round($value['collect_month'])) : '0'; + $excel_contract_array[$key][19] = (isset($value['facility_num']) && !is_null($value['facility_num'])) ? number_format(round($value['facility_num'])) : '0'; + $excel_contract_array[$key][20] = (isset($value['facility_status']) && !is_null($value['facility_status'])) ? $value['facility_status'] : '--'; + $excel_contract_array[$key][14] = number_format(round($excel_contract_array[$key][14])); + $excel_contract_array[$key][16] = number_format(round($excel_contract_array[$key][16])); + if (isset($value['PayStage']) && is_iterable($value['PayStage'])) { + $isBoga = 0; + if (stristr($value['PayStage'][1]['PayStage'], '寶佳')) { + $isBoga = 1; + $excel_contract_boga_array[$key] = array_fill(0, 76, ''); + $excel_contract_boga_array[$key][0] = (isset($value['BillNo']) && !is_null($value['BillNo'])) ? $value['BillNo'] : ''; + $excel_contract_boga_array[$key][1] = (isset($value['BillDate']) && !is_null($value['BillDate'])) ? $value['BillDate'] : ''; + $excel_contract_boga_array[$key][2] = (isset($value['CustomerId']) && !is_null($value['CustomerId'])) ? $value['CustomerId'] : ''; + $excel_contract_boga_array[$key][3] = (isset($value['CustomerName']) && !is_null($value['CustomerName'])) ? $value['CustomerName'] : ''; + $excel_contract_boga_array[$key][4] = (isset($value['CustomerAddress']) && !is_null($value['CustomerAddress'])) ? $value['CustomerAddress'] : ''; + $excel_contract_boga_array[$key][5] = (isset($value['DeptId']) && !is_null($value['DeptId'])) ? $value['DeptId'] : ''; + $excel_contract_boga_array[$key][6] = (isset($value['DeptName']) && !is_null($value['DeptName'])) ? $value['DeptName'] : ''; + $excel_contract_boga_array[$key][7] = (isset($value['PersonId']) && !is_null($value['PersonId'])) ? $value['PersonId'] : ''; + $excel_contract_boga_array[$key][8] = (isset($value['PersonName']) && !is_null($value['PersonName'])) ? $value['PersonName'] : ''; + $excel_contract_boga_array[$key][9] = (isset($value['ManagerId']) && !is_null($value['ManagerId'])) ? $value['ManagerId'] : ''; + $excel_contract_boga_array[$key][10] = (isset($value['ManagerName']) && !is_null($value['ManagerName'])) ? $value['ManagerName'] : ''; + $excel_contract_boga_array[$key][11] = (isset($value['OAmountWithTax']) && !is_null($value['OAmountWithTax'])) ? number_format(round($value['OAmountWithTax'])) : '0'; + $excel_contract_boga_array[$key][12] = (isset($value['A40001']) && !is_null($value['A40001'])) ? number_format(round($value['A40001'])) : '0'; + $excel_contract_boga_array[$key][13] = (isset($value['A40008']) && !is_null($value['A40008'])) ? number_format(round($value['A40008'])) : '0'; + $excel_contract_boga_array[$key][14] = (isset($value['receivable_budget']) && !is_null($value['receivable_budget'])) ? $value['receivable_budget'] : 0; + $excel_contract_boga_array[$key][15] = (isset($value['invoice_budget']) && !is_null($value['invoice_budget'])) ? number_format(round($value['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][16] = (isset($value['received_budget']) && !is_null($value['received_budget'])) ? $value['received_budget'] : 0; + $excel_contract_boga_array[$key][17] = number_format(round($excel_contract_boga_array[$key][14] - $excel_contract_boga_array[$key][16])); + $excel_contract_boga_array[$key][18] = (isset($value['collect_month']) && !is_null($value['collect_month'])) ? number_format(round($value['collect_month'])) : '0'; + $excel_contract_boga_array[$key][19] = (isset($value['facility_num']) && !is_null($value['facility_num'])) ? number_format(round($value['facility_num'])) : '0'; + $excel_contract_boga_array[$key][20] = (isset($value['facility_status']) && !is_null($value['facility_status'])) ? $value['facility_status'] : '--'; + $excel_contract_boga_array[$key][14] = number_format(round($excel_contract_boga_array[$key][14])); + $excel_contract_boga_array[$key][16] = number_format(round($excel_contract_boga_array[$key][16])); + } else { + $excel_contract_noboga_array[$key] = array_fill(0, 76, ''); + $excel_contract_noboga_array[$key][0] = (isset($value['BillNo']) && !is_null($value['BillNo'])) ? $value['BillNo'] : ''; + $excel_contract_noboga_array[$key][1] = (isset($value['BillDate']) && !is_null($value['BillDate'])) ? $value['BillDate'] : ''; + $excel_contract_noboga_array[$key][2] = (isset($value['CustomerId']) && !is_null($value['CustomerId'])) ? $value['CustomerId'] : ''; + $excel_contract_noboga_array[$key][3] = (isset($value['CustomerName']) && !is_null($value['CustomerName'])) ? $value['CustomerName'] : ''; + $excel_contract_noboga_array[$key][4] = (isset($value['CustomerAddress']) && !is_null($value['CustomerAddress'])) ? $value['CustomerAddress'] : ''; + $excel_contract_noboga_array[$key][5] = (isset($value['DeptId']) && !is_null($value['DeptId'])) ? $value['DeptId'] : ''; + $excel_contract_noboga_array[$key][6] = (isset($value['DeptName']) && !is_null($value['DeptName'])) ? $value['DeptName'] : ''; + $excel_contract_noboga_array[$key][7] = (isset($value['PersonId']) && !is_null($value['PersonId'])) ? $value['PersonId'] : ''; + $excel_contract_noboga_array[$key][8] = (isset($value['PersonName']) && !is_null($value['PersonName'])) ? $value['PersonName'] : ''; + $excel_contract_noboga_array[$key][9] = (isset($value['ManagerId']) && !is_null($value['ManagerId'])) ? $value['ManagerId'] : ''; + $excel_contract_noboga_array[$key][10] = (isset($value['ManagerName']) && !is_null($value['ManagerName'])) ? $value['ManagerName'] : ''; + $excel_contract_noboga_array[$key][11] = (isset($value['OAmountWithTax']) && !is_null($value['OAmountWithTax'])) ? number_format(round($value['OAmountWithTax'])) : '0'; + $excel_contract_noboga_array[$key][12] = (isset($value['A40001']) && !is_null($value['A40001'])) ? number_format(round($value['A40001'])) : '0'; + $excel_contract_noboga_array[$key][13] = (isset($value['A40008']) && !is_null($value['A40008'])) ? number_format(round($value['A40008'])) : '0'; + $excel_contract_noboga_array[$key][14] = (isset($value['receivable_budget']) && !is_null($value['receivable_budget'])) ? $value['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][15] = (isset($value['invoice_budget']) && !is_null($value['invoice_budget'])) ? number_format(round($value['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][16] = (isset($value['received_budget']) && !is_null($value['received_budget'])) ? $value['received_budget'] : 0; + $excel_contract_noboga_array[$key][17] = number_format(round($excel_contract_noboga_array[$key][14] - $excel_contract_noboga_array[$key][16])); + $excel_contract_noboga_array[$key][18] = (isset($value['collect_month']) && !is_null($value['collect_month'])) ? number_format(round($value['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][19] = (isset($value['facility_num']) && !is_null($value['facility_num'])) ? number_format(round($value['facility_num'])) : '0'; + $excel_contract_noboga_array[$key][20] = (isset($value['facility_status']) && !is_null($value['facility_status'])) ? $value['facility_status'] : '--'; + $excel_contract_noboga_array[$key][14] = number_format(round($excel_contract_noboga_array[$key][14])); + $excel_contract_noboga_array[$key][16] = number_format(round($excel_contract_noboga_array[$key][16])); + } + foreach ($value['PayStage'] as $paykey => $payvalue) { + switch ($payvalue['stage']) { + case "訂金": + $excel_contract_array[$key][21] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][22] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][23] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][24] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][25] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][26] = number_format(round($excel_contract_array[$key][23] - $excel_contract_array[$key][25])); + $excel_contract_array[$key][27] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][23] = number_format(round($excel_contract_array[$key][23])); + $excel_contract_array[$key][25] = number_format(round($excel_contract_array[$key][25])); + if ($isBoga == 1) { + $excel_contract_boga_array[$key][21] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_boga_array[$key][22] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_boga_array[$key][23] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_boga_array[$key][24] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][25] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_boga_array[$key][26] = number_format(round($excel_contract_boga_array[$key][23] - $excel_contract_boga_array[$key][25])); + $excel_contract_boga_array[$key][27] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_boga_array[$key][23] = number_format(round($excel_contract_boga_array[$key][23])); + $excel_contract_boga_array[$key][25] = number_format(round($excel_contract_boga_array[$key][25])); + } else { + $excel_contract_noboga_array[$key][21] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][22] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][23] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][24] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][25] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][26] = number_format(round($excel_contract_noboga_array[$key][23] - $excel_contract_noboga_array[$key][25])); + $excel_contract_noboga_array[$key][27] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][23] = number_format(round($excel_contract_noboga_array[$key][23])); + $excel_contract_noboga_array[$key][25] = number_format(round($excel_contract_noboga_array[$key][25])); + } + break; + case "二次款": + $excel_contract_array[$key][28] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][29] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][30] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][31] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][32] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][33] = number_format(round($excel_contract_array[$key][30] - $excel_contract_array[$key][32])); + $excel_contract_array[$key][34] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][30] = number_format(round($excel_contract_array[$key][30])); + $excel_contract_array[$key][32] = number_format(round($excel_contract_array[$key][32])); + + if ($isBoga == 1) { + $excel_contract_boga_array[$key][28] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_boga_array[$key][29] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_boga_array[$key][30] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_boga_array[$key][31] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][32] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_boga_array[$key][33] = number_format(round($excel_contract_boga_array[$key][30] - $excel_contract_boga_array[$key][32])); + $excel_contract_boga_array[$key][34] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_boga_array[$key][30] = number_format(round($excel_contract_boga_array[$key][30])); + $excel_contract_boga_array[$key][32] = number_format(round($excel_contract_boga_array[$key][32])); + } else { + $excel_contract_noboga_array[$key][28] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][29] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][30] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][31] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][32] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][33] = number_format(round($excel_contract_noboga_array[$key][30] - $excel_contract_noboga_array[$key][32])); + $excel_contract_noboga_array[$key][34] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][30] = number_format(round($excel_contract_noboga_array[$key][30])); + $excel_contract_noboga_array[$key][32] = number_format(round($excel_contract_noboga_array[$key][32])); + } + break; + case "貨抵工地款": + $excel_contract_array[$key][35] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][36] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][37] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][38] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][39] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][40] = number_format(round($excel_contract_array[$key][37] - $excel_contract_array[$key][39])); + $excel_contract_array[$key][41] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][37] = number_format(round($excel_contract_array[$key][37])); + $excel_contract_array[$key][39] = number_format(round($excel_contract_array[$key][39])); + if ($isBoga == 1) { + $excel_contract_boga_array[$key][35] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_boga_array[$key][36] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_boga_array[$key][37] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_boga_array[$key][38] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][39] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_boga_array[$key][40] = number_format(round($excel_contract_boga_array[$key][37] - $excel_contract_boga_array[$key][39])); + $excel_contract_boga_array[$key][41] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_boga_array[$key][37] = number_format(round($excel_contract_boga_array[$key][37])); + $excel_contract_boga_array[$key][39] = number_format(round($excel_contract_boga_array[$key][39])); + } else { + $excel_contract_noboga_array[$key][35] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][36] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][37] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][38] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][39] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][40] = number_format(round($excel_contract_noboga_array[$key][37] - $excel_contract_noboga_array[$key][39])); + $excel_contract_noboga_array[$key][41] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][37] = number_format(round($excel_contract_noboga_array[$key][37])); + $excel_contract_noboga_array[$key][39] = number_format(round($excel_contract_noboga_array[$key][39])); + } + break; + case "安裝款": + $excel_contract_array[$key][42] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][43] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][44] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][45] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][46] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][47] = number_format(round($excel_contract_array[$key][44] - $excel_contract_array[$key][46])); + $excel_contract_array[$key][48] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][44] = number_format(round($excel_contract_array[$key][44])); + $excel_contract_array[$key][46] = number_format(round($excel_contract_array[$key][46])); + + $excel_contract_noboga_array[$key][42] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][43] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][44] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][45] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][46] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][47] = number_format(round($excel_contract_noboga_array[$key][44] - $excel_contract_noboga_array[$key][46])); + $excel_contract_noboga_array[$key][48] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][44] = number_format(round($excel_contract_noboga_array[$key][44])); + $excel_contract_noboga_array[$key][46] = number_format(round($excel_contract_noboga_array[$key][46])); + break; + case "試車款": + $excel_contract_array[$key][49] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][50] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][51] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][52] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][53] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][54] = number_format(round($excel_contract_array[$key][51] - $excel_contract_array[$key][53])); + $excel_contract_array[$key][55] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][51] = number_format(round($excel_contract_array[$key][51])); + $excel_contract_array[$key][53] = number_format(round($excel_contract_array[$key][53])); + if ($isBoga == 1) { + $excel_contract_boga_array[$key][49] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_boga_array[$key][50] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_boga_array[$key][51] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_boga_array[$key][52] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][53] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_boga_array[$key][54] = number_format(round($excel_contract_boga_array[$key][51] - $excel_contract_boga_array[$key][53])); + $excel_contract_boga_array[$key][55] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_boga_array[$key][51] = number_format(round($excel_contract_boga_array[$key][51])); + $excel_contract_boga_array[$key][53] = number_format(round($excel_contract_boga_array[$key][53])); + } else { + $excel_contract_noboga_array[$key][49] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][50] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][51] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][52] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][53] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][54] = number_format(round($excel_contract_noboga_array[$key][51] - $excel_contract_noboga_array[$key][53])); + $excel_contract_noboga_array[$key][55] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][51] = number_format(round($excel_contract_noboga_array[$key][51])); + $excel_contract_noboga_array[$key][53] = number_format(round($excel_contract_noboga_array[$key][53])); + } + break; + case "官檢驗收款": + $excel_contract_array[$key][56] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][57] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][58] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][59] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][60] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][61] = number_format(round($excel_contract_array[$key][58] - $excel_contract_array[$key][60])); + $excel_contract_array[$key][62] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][58] = number_format(round($excel_contract_array[$key][58])); + $excel_contract_array[$key][60] = number_format(round($excel_contract_array[$key][60])); + + $excel_contract_noboga_array[$key][56] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][57] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][58] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][59] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][60] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][61] = number_format(round($excel_contract_noboga_array[$key][58] - $excel_contract_noboga_array[$key][60])); + $excel_contract_noboga_array[$key][62] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][58] = number_format(round($excel_contract_noboga_array[$key][58])); + $excel_contract_noboga_array[$key][60] = number_format(round($excel_contract_noboga_array[$key][60])); + break; + case "交車款": + $excel_contract_array[$key][63] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][64] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][65] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][66] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][67] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][68] = number_format(round($excel_contract_array[$key][65] - $excel_contract_array[$key][67])); + $excel_contract_array[$key][69] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][65] = number_format(round($excel_contract_array[$key][65])); + $excel_contract_array[$key][67] = number_format(round($excel_contract_array[$key][67])); + + $excel_contract_noboga_array[$key][63] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][64] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][65] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][66] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][67] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][68] = number_format(round($excel_contract_noboga_array[$key][65] - $excel_contract_noboga_array[$key][67])); + $excel_contract_noboga_array[$key][69] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][65] = number_format(round($excel_contract_noboga_array[$key][65])); + $excel_contract_noboga_array[$key][67] = number_format(round($excel_contract_noboga_array[$key][67])); + break; + case "尾款": + $excel_contract_array[$key][70] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_array[$key][71] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_array[$key][72] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_array[$key][73] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_array[$key][74] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_array[$key][75] = number_format(round($excel_contract_array[$key][72] - $excel_contract_array[$key][74])); + $excel_contract_array[$key][76] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_array[$key][72] = number_format(round($excel_contract_array[$key][72])); + $excel_contract_array[$key][74] = number_format(round($excel_contract_array[$key][74])); + if ($isBoga == 1) { + $excel_contract_boga_array[$key][70] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_boga_array[$key][71] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_boga_array[$key][72] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_boga_array[$key][73] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_boga_array[$key][74] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_boga_array[$key][75] = number_format(round($excel_contract_boga_array[$key][72] - $excel_contract_boga_array[$key][74])); + $excel_contract_boga_array[$key][76] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_boga_array[$key][72] = number_format(round($excel_contract_boga_array[$key][72])); + $excel_contract_boga_array[$key][74] = number_format(round($excel_contract_boga_array[$key][74])); + } else { + $excel_contract_noboga_array[$key][70] = (isset($payvalue['PayStage']) && !is_null($payvalue['PayStage'])) ? $payvalue['PayStage'] : '--'; + $excel_contract_noboga_array[$key][71] = (isset($payvalue['PlanPayAmt']) && !is_null($payvalue['PlanPayAmt'])) ? number_format(round($payvalue['PlanPayAmt'])) : '0'; + $excel_contract_noboga_array[$key][72] = (isset($payvalue['receivable_budget']) && !is_null($payvalue['receivable_budget'])) ? $payvalue['receivable_budget'] : 0; + $excel_contract_noboga_array[$key][73] = (isset($payvalue['invoice_budget']) && !is_null($payvalue['invoice_budget'])) ? number_format(round($payvalue['invoice_budget'])) : '0'; + $excel_contract_noboga_array[$key][74] = (isset($payvalue['received_budget']) && !is_null($payvalue['received_budget'])) ? $payvalue['received_budget'] : 0; + $excel_contract_noboga_array[$key][75] = number_format(round($excel_contract_noboga_array[$key][72] - $excel_contract_noboga_array[$key][74])); + $excel_contract_noboga_array[$key][76] = (isset($payvalue['collect_month']) && !is_null($payvalue['collect_month'])) ? number_format(round($payvalue['collect_month'])) : '0'; + $excel_contract_noboga_array[$key][72] = number_format(round($excel_contract_noboga_array[$key][72])); + $excel_contract_noboga_array[$key][74] = number_format(round($excel_contract_noboga_array[$key][74])); + } + break; + } + } + } + // 0 作番號; 1 合約號; 2 合約單據日期; 3 客戶編號; 4 客戶名稱; 5 客戶地址; 6 部門ID; 7 部門名稱; 8 營業員工號; 9 營業員名稱; 10 部門主管工號; 11 部門主管名稱; + // 12 作番總金額; 13 A40001 金額; 14 A40008 金額; 15 目前應收金額; 16 已開發票金額; 17 已收金額; 18 催收金額; 19 催收次數; 20 作番狀態 + if (isset($value['facility']) && is_iterable($value['facility'])) { + foreach ($value['facility'] as $fkey => $fvalue) { + $excel_facility_array[$fkey] = [$fkey, $key, $value['BillDate']]; + $excel_facility_array[$key][2] = (isset($value['CustomerId']) && !is_null($value['CustomerId'])) ? $value['CustomerId'] : ''; + $excel_facility_array[$key][3] = (isset($value['CustomerName']) && !is_null($value['CustomerName'])) ? $value['CustomerName'] : ''; + $excel_facility_array[$key][4] = (isset($value['CustomerAddress']) && !is_null($value['CustomerAddress'])) ? $value['CustomerAddress'] : ''; + $excel_facility_array[$key][5] = (isset($value['DeptId']) && !is_null($value['DeptId'])) ? $value['DeptId'] : ''; + $excel_facility_array[$key][6] = (isset($value['DeptName']) && !is_null($value['DeptName'])) ? $value['DeptName'] : ''; + $excel_facility_array[$key][7] = (isset($value['PersonId']) && !is_null($value['PersonId'])) ? $value['PersonId'] : ''; + $excel_facility_array[$key][8] = (isset($value['PersonName']) && !is_null($value['PersonName'])) ? $value['PersonName'] : ''; + $excel_facility_array[$key][9] = (isset($value['ManagerId']) && !is_null($value['ManagerId'])) ? $value['ManagerId'] : ''; + } + } +} +// $excel_contract_noboga_array[$key] = array_fill(0, 76, ''); +// $excel_contract_noboga_array[$key][0] = (isset($value['BillNo']) && !is_null($value['BillNo'])) ? $value['BillNo'] : ''; +// $excel_contract_noboga_array[$key][1] = (isset($value['BillDate']) && !is_null($value['BillDate'])) ? $value['BillDate'] : ''; +// $excel_contract_noboga_array[$key][2] = (isset($value['CustomerId']) && !is_null($value['CustomerId'])) ? $value['CustomerId'] : ''; +// $excel_contract_noboga_array[$key][3] = (isset($value['CustomerName']) && !is_null($value['CustomerName'])) ? $value['CustomerName'] : ''; +// $excel_contract_noboga_array[$key][4] = (isset($value['CustomerAddress']) && !is_null($value['CustomerAddress'])) ? $value['CustomerAddress'] : ''; +// $excel_contract_noboga_array[$key][5] = (isset($value['DeptId']) && !is_null($value['DeptId'])) ? $value['DeptId'] : ''; +// $excel_contract_noboga_array[$key][6] = (isset($value['DeptName']) && !is_null($value['DeptName'])) ? $value['DeptName'] : ''; +// $excel_contract_noboga_array[$key][7] = (isset($value['PersonId']) && !is_null($value['PersonId'])) ? $value['PersonId'] : ''; +// $excel_contract_noboga_array[$key][8] = (isset($value['PersonName']) && !is_null($value['PersonName'])) ? $value['PersonName'] : ''; +// $excel_contract_noboga_array[$key][9] = (isset($value['ManagerId']) && !is_null($value['ManagerId'])) ? $value['ManagerId'] : ''; +// $excel_contract_noboga_array[$key][10] = (isset($value['ManagerName']) && !is +// foreach ($arrayData as $key => $value) { +// echo $key . "
"; +// foreach ($value as $k => $v) { +// if ($k == 'facility') { +// foreach ($v as $fkey => $fvalue) { +// echo $fkey . "
"; +// print_r($fvalue); +// echo "

"; +// } +// } +// // echo $k . "
"; +// // print_r($v); +// // echo "

"; // } -// echo "
-------------------------------
"; +// exit(); // } -// exit(); - -// 存進excel_array -// $excel_array = array(); -// $today = strtotime(date('Ymt')); -foreach($arrayData as $key => $value) { - echo $key."
"; - foreach($value['facility'] as $key2 => $value2) { - echo $key2."
"; - foreach($value2 as $key3 => $value3){ - echo $key3."
"; - print_r($value3); - echo "
*********************
"; - } - echo "
==================
"; - } - echo "
-------------------------------
"; -} \ No newline at end of file + +$total_data = json_encode($excel_contract_array); +$boga_data = json_encode($excel_contract_boga_array); +$noboga_data = json_encode($excel_contract_noboga_array); +?> + + +
+
+ + + +
+
+ +
+
+

合約 (新梯)統整資訊

+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $value) { + ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
合約號部門經理營業員客戶作番狀態合約-設備金額合約-安裝金額合約總金額合約目前應收已開發票金額已收金額金額催收金額金額催收次數作番數量訂金
名稱
訂金
合約金額
訂金
應收金額
訂金
已開金額
訂金
已收金額
訂金
催收金額
訂金
催收次數
二次款
名稱
二次款
合約金額
二次款
應收金額
二次款
已開金額
二次款
已收金額
二次款
催收金額
二次款
催收次數
貨抵工地款
名稱
貨抵工地款
合約金額
貨抵工地款
應收金額
貨抵工地款
已開金額
貨抵工地款
已收金額
貨抵工地款
催收金額
貨抵工地款
催收次數
安裝款
名稱
安裝款
合約金額
安裝款
應收金額
安裝款
已開金額
安裝款
已收金額
安裝款
催收金額
安裝款
催收次數
試車款
名稱
試車款
合約金額
試車款
應收金額
試車款
已開金額
試車款
已收金額
試車款
催收金額
試車款
催收次數
官檢驗收款
名稱
官檢驗收款
合約金額
官檢驗收款
應收金額
官檢驗收款
已開金額
官檢驗收款
已收金額
官檢驗收款
催收金額
官檢驗收款
催收次數
交車款
名稱
交車款
合約金額
交車款
應收金額
交車款
已開金額
交車款
已收金額
交車款
催收金額
交車款
催收次數
尾款
名稱
尾款
合約金額
尾款
應收金額
尾款
已開金額
尾款
已收金額
尾款
催收金額
尾款
催收次數
" . $value['DeptName'] ?>" . $value['ManagerName'] ?>" . $value['PersonName'] ?>" . $value['CustomerName'] ?>
+
+ + + \ No newline at end of file diff --git a/wms/account-receivable-renovate-index.php b/wms/account-receivable-renovate-index.php index 49093379..01f1540e 100644 --- a/wms/account-receivable-renovate-index.php +++ b/wms/account-receivable-renovate-index.php @@ -9,11 +9,14 @@ $sum_A40002 = 0; $sum_A40009 = 0; // 安裝 $sum_A40010 = 0; +// M4 +$sum_A40019 = 0; $sum_total_budget = 0; $average_budget = 0; $average_A40002 = 0; $average_A40009 = 0; $average_A40010 = 0; +$average_A40019 = 0; $start_date = empty($_POST['date_start']) ? null : $_POST['date_start']; $end_date = empty($_POST['date_end']) ? null : $_POST['date_end']; @@ -258,7 +261,7 @@ foreach ($contract as $cont) { $arrayData[$BillNo]['invoice'] = array(); $arrayData[$BillNo]['received_budget'] = 0; $arrayData[$BillNo]['invoice_budget'] = 0; - $arrayData[$BillNo]['A40002'] = $arrayData[$BillNo]['A40009'] = $arrayData[$BillNo]['A40010'] = 0; + $arrayData[$BillNo]['A40002'] = $arrayData[$BillNo]['A40009'] = $arrayData[$BillNo]['A40010'] =$arrayData[$BillNo]['A40019'] = 0; $arrayData[$BillNo]['total_facility_num'] = 0; } $arrayData[$BillNo]['PayStage'][$RowNo]['type'] = 0; @@ -312,7 +315,7 @@ foreach ($contract_budget_data as $cont) { } else { $arrayData[$BillNo]['total_facility_num'] += 1; $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['total_budget'] = $cont['OAmountWithTax']; - $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40002'] = $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40009'] = $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40010'] = 0; + $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40002'] = $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40009'] = $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40010'] = $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']]['A40019'] = 0; $arrayData[$BillNo]['facility'][$cont['CU_MaterialId']][$cont['MaterialId']] = $cont['OAmountWithTax']; } } @@ -335,6 +338,7 @@ foreach ($contract_budget_data as $cont) { $contract_budget[$cont['BillNo']]['facility'][$cont['CU_MaterialId']]['A40002'] = 0; $contract_budget[$cont['BillNo']]['facility'][$cont['CU_MaterialId']]['A40009'] = 0; $contract_budget[$cont['BillNo']]['facility'][$cont['CU_MaterialId']]['A40010'] = 0; + $contract_budget[$cont['BillNo']]['facility'][$cont['CU_MaterialId']]['A40019'] = 0; $contract_budget[$cont['BillNo']]['facility'][$cont['CU_MaterialId']][$cont['MaterialId']] = $cont['OAmountWithTax']; }; } @@ -428,6 +432,7 @@ foreach ($wipwhole_array as $wip) { $arrayData[$billno]['facility'][$wip['facilityno']]['A40002'] = (isset($contract_budget[$billno][$wip['facilityno']]['A40002']) && !is_null($contract_budget[$billno][$wip['facilityno']]['A40002'])) ? $contract_budget[$billno][$wip['facilityno']]['A40002'] : 0; $arrayData[$billno]['facility'][$wip['facilityno']]['A40008'] = (isset($contract_budget[$billno][$wip['facilityno']]['A40008']) && !is_null($contract_budget[$billno][$wip['facilityno']]['A40008'])) ? $contract_budget[$billno][$wip['facilityno']]['A40008'] : 0; $arrayData[$billno]['facility'][$wip['facilityno']]['A40010'] = (isset($contract_budget[$billno][$wip['facilityno']]['A40010']) && !is_null($contract_budget[$billno][$wip['facilityno']]['A40010'])) ? $contract_budget[$billno][$wip['facilityno']]['A40010'] : 0; + $arrayData[$billno]['facility'][$wip['facilityno']]['A40019'] = (isset($contract_budget[$billno][$wip['facilityno']]['A40019']) && !is_null($contract_budget[$billno][$wip['facilityno']]['A40019'])) ? $contract_budget[$billno][$wip['facilityno']]['A40019'] : 0; } $wipwhole_status[$wip['facilityno']] = $wip; } diff --git a/wms/account-receivable.txt b/wms/account-receivable.txt index 4343bfa8..068d231d 100644 --- a/wms/account-receivable.txt +++ b/wms/account-receivable.txt @@ -1 +1 @@ -{"Bill":{"3MW00692":["3MW00692","D23070082","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u749f\u7530\u5efa\u7bc9(\u4ed5\u8208\u6bb5)","59290547","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u9cf3\u4ec1\u8def4-11\u865f","\u749f\u7530\u5efa\u7bc9\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",249375,"20230901",249375,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",623437.5,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",332500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",124687.5,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00692 (2024-06-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1330000,249375],"3MW00691":["3MW00691","D23070082","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u749f\u7530\u5efa\u7bc9(\u4ed5\u8208\u6bb5)","59290547","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u9cf3\u4ec1\u8def4-11\u865f","\u749f\u7530\u5efa\u7bc9\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",170625,"20230901",170625,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",426562.5,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",227500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85312.5,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00691 (2024-06-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",910000,170625],"3MH00659":["3MH00659","D23070085","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6c38\u878d\u71df\u9020(\u5927\u5713\u74b0\u5340\u5357\u8def)","13010305","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u74b0\u5357\u8def184\u865f7\u6a13\u4e4b2","\u6c38\u878d\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",61200.07999984314,"20230825",61200.07999984314,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000.80000039216,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",61200.07999984314,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca ",30600.03999992157,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00659 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",306001,61200.07999984314],"3MH00658":["3MH00658","D23070085","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6c38\u878d\u71df\u9020(\u5927\u5713\u74b0\u5340\u5357\u8def)","13010305","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u74b0\u5357\u8def184\u865f7\u6a13\u4e4b2","\u6c38\u878d\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",142799.92000015685,"20230825",142799.92000015685,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",357001.1999996078,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",142799.92000015685,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca ",71399.96000007843,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00658 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",714001,142799.92000015685],"3MH00661":["3MH00661","D23070086","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6c38\u878d\u71df\u9020(\u5927\u5712\u5b78\u516b\u8857)","13010305","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u74b0\u5357\u8def184\u865f7\u6a13\u4e4b2","\u6c38\u878d\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",63000,"20230825",63000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",31500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00661 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",315000,63000],"3MH00660":["3MH00660","D23070086","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6c38\u878d\u71df\u9020(\u5927\u5712\u5b78\u516b\u8857)","13010305","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u74b0\u5357\u8def184\u865f7\u6a13\u4e4b2","\u6c38\u878d\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",147000,"20230825",147000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",367500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",147000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",73500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00660 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",735000,147000],"3MH00554":["3MH00554","D23070118","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5146\u6dde\u71df\u9020(\u8607\u60e0\u73cd)","16824304","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u6cb3\u908a\u8857117\u865f3\u6a13\u4e4b1","\u5146\u6dde\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20230804",126000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"20231103",315000,0,0,1,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00554 (2023-11-03\u8ca8\u62b5\u5de5\u5730) ; ",630000,441000],"3MH00647":["3MH00647","D23070154","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8aa0\u54c1\u571f\u6728\u5305(\u6587\u5b89\u8857)","40846686","\u5609\u7fa9\u5e02\u5d07\u6587\u8857145\u865f2\u6a13","\u8aa0\u54c1\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",156000,"20230818",156000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00647 (2024-11-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",780000,156000],"3MX00680":["3MX00680","D23070156","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u912d\u921e\u9d3b(\u7af9\u5317\u5e78\u798f\u8857)","","\u65b0\u7af9\u5e02\u4ecb\u58fd\u8def1\u865f","\u912d\u921e\u9d3b","\u7c3d\u7d04",651600,"20230831",651600,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",868800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",434400,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",217200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00680 (2024-04-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",2172000,651600],"3MP00773":["3MP00773","D23080053","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9673\u9e97\u679d","","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u627f\u5fb7\u8def96\u865f","\u9673\u9e97\u679d","\u7c3d\u7d04",136500,"20230918",136500,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",341250,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",136500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68250,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00773 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",682500,136500],"3MH00693":["3MH00693","D23080055","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u96f2\u5149\u8a2d\u8a08(\u8afe\u8c9d\u723e\u7259\u91ab)","84726392","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1095\u865f8\u6a13","\u96f2\u5149\u5ba4\u5167\u7a7a\u9593\u898f\u5283\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230901",114000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00693 (2024-01-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MH00772":["3MH00772","D23080110","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7adf\u80fd\u6709\u9650\u516c\u53f8","86106832","\u9ad8\u96c4\u5e02\u5c0f\u6e2f\u5340\u5b54\u5b85\u516d\u8857280\u865f","\u7adf\u80fd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",116000,"20230907",116000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",290000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00772 (2023-12-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,116000],"3MW00694":["3MW00694","D23080121","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u529b\u79b9\u5efa\u8a2d(\u6e9d\u7f8e\u6bb5)","90383632","\u5c4f\u6771\u5e02\u516c\u88d5\u8857283\u865f","\u529b\u79b9\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",196000,"20230907",196000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",490000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",214000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00694 (2024-04-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",998000,196000],"3MX00776":["3MX00776","D23080132","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5049\u5510\u71df\u9020(\u5b9c\u7e09\u5efa\u8a2d\u51ac\u5c71\u96c6\u5408\u4f4f\u5b85)","84660997","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u6a39\u4eba\u8def48-10\u865f1\u6a13","\u5049\u5510\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",256000,"20230926",256000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",640000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",256000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",128000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00776 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1280000,256000],"3MX00775":["3MX00775","D23080132","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5049\u5510\u71df\u9020(\u5b9c\u7e09\u5efa\u8a2d\u51ac\u5c71\u96c6\u5408\u4f4f\u5b85)","84660997","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u6a39\u4eba\u8def48-10\u865f1\u6a13","\u5049\u5510\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",262000,"20230926",262000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",655000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",262000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",131000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00775 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1310000,262000],"3MH00816":["3MH00816","D23080167","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9ec3\u518d\u8302\u8fb2\u820d(\u8449\u5f65\u5ef7)","","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u8449\u5f65\u5ef7","\u7c3d\u7d04",104000,"20231011",104000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",286000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00816 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",546000,104000],"3MH00817":["3MH00817","D23080168","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9673\u4e16\u660e\u8fb2\u820d(\u8449\u5f65\u5ef7)","","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u8449\u5f65\u5ef7","\u7c3d\u7d04",104000,"20231011",104000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",286000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00817 (2024-03-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",546000,104000],"3MH00733":["3MH00733","D23080170","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u5cf0\u5ba5\u571f\u6728\u5305\u5de5\u696d","82187664","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u897f\u5f8c\u8857121\u865f","\u5cf0\u5ba5\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",177000,"20230913",177000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",177000,"20231207",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",177000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00733 (2023-12-07\u8ca8\u62b5\u5de5\u5730) ; ",590000,177000],"3MW00256":["3MW00256","M220195","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u946b\u5efa\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","83081154","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u4e2d\u592e\u91cc\u4e2d\u5c71\u8def142\u865f3\u6a13","\u946b\u5efa\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",198000,"20230331",198000,0,0,8,"\u7c3d\u7d04\u5f8c90\u65e5",396000,"20230629",396000,0,0,5,"\u8ca8\u62b5\u5de5\u5730",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",99000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",99000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00256 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",990000,594000],"3MX00026":["3MX00026","M220200","\u6843\u7af9\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u5f35\u8389\u51f1","\u806f\u96c4\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","90139883","\u6843\u5712\u5e02\u694a\u6885\u5340\u745e\u6eaa\u88e1\u745e\u6885\u8857165\u865f","\u806f\u96c4\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",170000,"20230201",170000,0,0,10,"\u7c3d\u8a02\u5f8c90\u5929",255000,"20230502",255000,0,0,7,"\u8ca8\u62b5\u5de5\u5730",170000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",170000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00026 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",850000,425000],"2MW00001":["2MW00001","M220209","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u8a60\u5927\u71df\u9020-\u9ad8\u96c4\u6848","45131674","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u967d\u660e\u8def239\u5df77\u865f9\u6a13","\u8a60\u5927\u6295\u8cc7\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",200000,"20221028",200000,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",500000,"20230525",500000,0,0,6,"-",0,"20230529",0,0,0,6,"\u5b89\u88dd\u8a66\u8eca",200000,"20230630",200000,0,0,5,"-",0,"20230825",0,0,0,3,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00001 (2023-08-25\u5b98\u6aa2\u5b8c\u7562) ; ",1000000,900000],"2MW00003":["2MW00003","M220224","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u8a60\u5927\u71df\u9020-\u6771\u6600\u6295\u8cc7-\u5c4f\u6771\u6848","42812578","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u967d\u660e\u8def239\u5df77\u865f9\u6a13","\u6771\u6600\u6295\u8cc7\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",200000,"20221028",200000,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",500000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",200000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00003 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,200000],"2MW00002":["2MW00002","M220224","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u8a60\u5927\u71df\u9020-\u6771\u6600\u6295\u8cc7-\u5c4f\u6771\u6848","42812578","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u967d\u660e\u8def239\u5df77\u865f9\u6a13","\u6771\u6600\u6295\u8cc7\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",200000,"20221028",200000,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",500000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",200000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00002 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,200000],"2MH00055":["2MH00055","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00055 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00054":["2MH00054","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00054 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00053":["2MH00053","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00053 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00052":["2MH00052","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00052 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00051":["2MH00051","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00051 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00050":["2MH00050","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00050 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MH00049":["2MH00049","M220243","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","59289555","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u570b\u8def452\u865f1\u6a13","\u6709\u7530\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230102",108000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",37800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00049 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"2MW00005":["2MW00005","M220244","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u9054\u8c50\u6607\u5efa\u8a2d","83161924","\u53f0\u5357\u5e02\u5b89\u5b9a\u5340\u6e2f\u5c3e\u91cc\u6e2f\u5b50\u5c3e69\u4e4b1\u865f","\u9054\u8c50\u6607\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20221028",190000,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",667000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00005 (2024-01-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1142000,190000],"2MW00004":["2MW00004","M220244","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u9054\u8c50\u6607\u5efa\u8a2d","83161924","\u53f0\u5357\u5e02\u5b89\u5b9a\u5340\u6e2f\u5c3e\u91cc\u6e2f\u5b50\u5c3e69\u4e4b1\u865f","\u9054\u8c50\u6607\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20221028",190000,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",667000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00004 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1142000,190000],"3MH00034":["3MH00034","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",55000,"20230201",55000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",220000,"-",0,0,0,0,"\u5b89\u88dd",165000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00034 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,55000],"3MH00033":["3MH00033","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",55000,"20230201",55000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",220000,"-",0,0,0,0,"\u5b89\u88dd",165000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00033 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,55000],"3MH00032":["3MH00032","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00032 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00031":["3MH00031","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00031 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00030":["3MH00030","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00030 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00029":["3MH00029","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00029 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00028":["3MH00028","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00028 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00027":["3MH00027","M220257","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9ea5\u5091\u5b87\u8331\u8c9d","83696743","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u9ea5\u5091\u5b87\u8331\u8c9d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",54000,"20230201",54000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"\u5b89\u88dd",162000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00027 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,54000],"3MH00569":["3MH00569","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00569 (2024-07-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00568":["3MH00568","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00568 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00567":["3MH00567","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00567 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00566":["3MH00566","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00566 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00565":["3MH00565","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00565 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00564":["3MH00564","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00564 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00563":["3MH00563","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00563 (2024-07-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00562":["3MH00562","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00562 (2024-07-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00561":["3MH00561","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00561 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00560":["3MH00560","M220263","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5091\u51a0\u5efa\u8a2d\u8606\u7af9\u6848","69529392","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u4e2d\u89c0\u8def\u4e00\u6bb5703\u5df739\u865f1\u6a13","\u5091\u51a0\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230824",180000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00560 (2024-05-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"2MH00028":["2MH00028","M220267","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6607\u6698\u71df\u9020(\u8208\u9054\u8def\u6797\u5b85)","16907629","\u5609\u7fa9\u5e02\u798f\u5168\u8def56\u865f","\u6607\u6698\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20221209",120000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"20230412",300000,0,0,7,"\u5b89\u88dd\u5b8c\u7562",60000,"20230505",60000,0,0,7,"\u8a66\u8eca\u5b8c\u5de5",60000,"20230523",60000,0,0,6,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00028 (2023-05-23\u8a66\u8eca\u5b8c\u7562) ; ",600000,540000],"3MH00172":["3MH00172","M220276","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u5927\u7530\u571f\u6728\u5305\u5de5\u696d(\u9673\u6b63\u5f97)","09579495","\u81fa\u5357\u5e02\u5317\u5340\u6587\u5143\u91cc\u4e2d\u83ef\u5317\u8def2\u6bb553\u5df733\u5f042\u865f2\u6a13","\u5927\u7530\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",120000,"20230421",120000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00172 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,120000],"3MH00255":["3MH00255","M220289","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u946b\u5efa\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","83081154","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u4e2d\u592e\u91cc\u4e2d\u5c71\u8def142\u865f3\u6a13","\u946b\u5efa\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230331",114000,0,0,8,"\u7c3d\u7d04\u5f8c90\u65e5",171000,"20230629",171000,0,0,5,"\u8ca8\u62b5\u5de5\u5730",171000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00255 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",570000,285000],"2MW00027":["2MW00027","M220304","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u5168\u53f0\u6676\u50cf","89261652","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u4e2d\u4e00\u8def5\u865f","\u5168\u53f0\u6676\u50cf\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",558600,"20221118",558600,0,0,12,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",1396500,"20230421",1396500,0,0,7,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",558600,"20230630",558600,0,0,5,"\u53d6\u5f97\u5408\u683c\u8b49\u4e26\u9a57\u6536",279300,"20230725",279300,0,0,4,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00027 (2023-07-25\u5b98\u6aa2\u5b8c\u7562) ; ",2793000,2793000],"3MH00112":["3MH00112","M220305","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8a60\u5927\u71df\u9020-\u65b0\u5c4b\u982d\u6d32\u6bb5\u4f4f\u5b85","86961842","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u967d\u660e\u8def239\u5df77\u865f9\u6a13","\u8a60\u5927\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230313",140000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00112 (2024-05-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00795":["3MH00795","M220307","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u66dc\u9e97\u71df\u9020(\u6b78\u4ec1\u6d3e\u51fa\u6240\u6848)","16513738","\u53f0\u5357\u5e02\u6b78\u4ec1\u5340\u4e2d\u6b63\u5317\u8def\u4e8c\u6bb5319\u5df719\u865f","\u66dc\u9e97\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20231004",140000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"20231216",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00795 (2023-12-16\u8ca8\u62b5\u5de5\u5730) ; ",700000,140000],"2MH00026":["2MH00026","M220311","\u6843\u7af9\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u5f35\u8389\u51f1","\u6c38\u5b89\u5317\u8def\u589e\u8a2d\u6848","","\u53f0\u5317\u5e02\u6c40\u5dde\u8def\u4e09\u6bb524\u5df711\u865f4\u6a13","\u6c38\u5b89\u5317\u8def\u589e\u8a2d\u6848","\u8a02\u91d1",140026,"20221114",140026,0,0,12,"\u7c3d\u8a02\u5f8c60\u5929",280050,"20230113",280050,0,0,10,"\u8ca8\u62b5\u5de5\u5730",140026,"20230515",140026,0,0,6,"-",0,"20230710",0,0,0,4,"-",0,"20230713",0,0,0,4,"\u9a57\u6536\u6b3e",73549,"20230712",73549,0,0,4,"\u4ea4\u8eca\u6b3e",73549,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00026 (2023-07-12\u5b98\u6aa2\u5b8c\u7562) ; ",707200,633651],"3MH00035":["3MH00035","M220312","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5091\u5132\u4fd0\u571f\u6728\u5305\u5de5\u696d\u6709\u9650\u516c\u53f8","90058798","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u745e\u8208\u8def369\u5df79\u865f","\u5091\u5132\u4fd0\u571f\u6728\u5305\u5de5\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",53000,"20230201",53000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",212000,"-",0,0,0,0,"\u5b89\u88dd",159000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00035 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,53000],"3MH00814":["3MH00814","M220316","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u767d\u9d3f\u5efa\u8a2d-\u81ea\u7531\u8def\u90fd\u66f4\u6848","42879439","\u53f0\u4e2d\u5e02\u897f\u5340\u798f\u4eba\u8857121\u5df79\u865f1\u6a13","\u5927\u777f\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230911",140000,0,0,2,"\u7c3d\u8a02\u5f8c120\u5929",280000,"20240109",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00814 (2024-02-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,140000],"2MH00046":["2MH00046","M220332","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u573b\u8c50\u5efa\u8a2d","54204380","\u9ad8\u96c4\u5e02\u5927\u793e\u5340\u548c\u5e73\u8def\u4e00\u6bb560\u4e4b2\u865f1\u6a13","\u573b\u8c50\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",132000,"20221208",132000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",330000,"20231004",330000,0,0,2,"\u5b89\u88dd\u5b8c\u6210",66000,"20231030",66000,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",66000,"20231220",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00046 (2023-12-20\u8a66\u8eca\u5b8c\u7562) ; ",660000,528000],"2MX00044":["2MX00044","M220355","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u570b\u5408\u71df\u9020-\u5ee3\u8208\u6bb5","34492623","\u53f0\u5317\u5e02\u4e2d\u6b63\u5340\u91cd\u6176\u5357\u8def\u4e8c\u6bb521\u865f6\u6a13\u4e4b4","\u570b\u5408\u71df\u9020\u4e8b\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",220000,"20221223",220000,0,0,11,"\u7c3d\u8a02\u5f8c30\u5929",440000,"20230122",440000,0,0,10,"\u8ca8\u62b5\u5de5\u5730",220000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MX00044 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",1100000,660000],"3MW00114":["3MW00114","M220356","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bf6\u6f64\u71df\u9020-\u9ad8\u90fd\u7345\u7532","16350333","\u9ad8\u96c4\u5e02\u5c0f\u6e2f\u5340\u5c71\u660e\u8def199\u865f","\u5bf6\u6f64\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20230317",190000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",380000,"20230928",380000,0,0,2,"-",0,"20231104",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",190000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00114 (2023-11-17\u8a66\u8eca\u5b8c\u7562) ; ",950000,570000],"2MW00038":["2MW00038","M220366","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u6b23\u4f73\u5fb7\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","25003911","\u53f0\u4e2d\u5e02\u6771\u5c71\u8def\u4e00\u6bb5156-6\u865f9\u6a13\u4e4b1","\u6b23\u4f73\u5fb7\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",150000,"20221221",150000,0,0,11,"\u7c3d\u7d04\u5f8c90\u5929",300000,"20230321",300000,0,0,8,"\u8ca8\u62b5\u5de5\u5730",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MW00038 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",750000,450000],"2MH00048":["2MH00048","M220369","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230103",136000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"20230706",340000,0,0,4,"\u5b89\u88dd\u5b8c\u6210",68000,"20231027",68000,0,0,1,"\u5b89\u88dd\u8a66\u8eca",68000,"20231124",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00048 (2023-11-24\u8a66\u8eca\u5b8c\u7562) ; ",680000,544000],"2MH00047":["2MH00047","M220369","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230103",136000,0,0,11,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"20230706",340000,0,0,4,"\u5b89\u88dd\u5b8c\u6210",68000,"20230911",68000,0,0,2,"\u5b89\u88dd\u8a66\u8eca",68000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"2MH00047 (2023-11-17\u8a66\u8eca\u5b8c\u7562) ; ",680000,544000],"3MF00038":["3MF00038","M220377","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u7d39\u83ef\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","84828573","\u65b0\u5317\u5e02\u65b0\u5e97\u5340\u5b89\u8208\u8def115\u865f13\u6a13\u4e4b2","\u7d39\u83ef\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",566000,"20230301",566000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",1698000,"20231221",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",566000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MF00038 (2023-12-21\u8ca8\u62b5\u5de5\u5730) ; ",2830000,566000],"3MX00037":["3MX00037","M220377","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u7d39\u83ef\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","84828573","\u65b0\u5317\u5e02\u65b0\u5e97\u5340\u5b89\u8208\u8def115\u865f13\u6a13\u4e4b2","\u7d39\u83ef\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",149600,"20230301",149600,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",448800,"20231221",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",149600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00037 (2023-12-21\u8ca8\u62b5\u5de5\u5730) ; ",748000,149600],"3MH00025":["3MH00025","M220379","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u540c\u57ce\u571f\u6728(\u9673\u5049\u5ead)","69875891","\u9ad8\u96c4\u5e02\u5ca1\u5c71\u5340\u65b0\u5e84\u8def100\u4e4b7\u865f","\u540c\u57ce\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",112000,"20230117",112000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00025 (2024-01-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MW00129":["3MW00129","M220381","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u777f\u9091\u751f\u7269\u79d1\u6280\u5ee0\u623f","54347660","\u5f70\u5316\u7e23\u57d4\u9e7d\u9109\u54e1\u9e7f\u8def\u4e00\u6bb5129\u865f","\u777f\u9091\u751f\u7269\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",179881.81818181818,"20230419",179881.81818181818,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",359763.63636363635,"20231128",0,0,0,0,"\u5b89\u88dd\u9a57\u6536\u5b8c\u6210",455472.72727272724,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",58750,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",121131.81818181818,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00129 (2023-11-28\u8ca8\u62b5\u5de5\u5730) ; ",1175000,179881.81818181818],"3MW00128":["3MW00128","M220381","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u777f\u9091\u751f\u7269\u79d1\u6280\u5ee0\u623f","54347660","\u5f70\u5316\u7e23\u57d4\u9e7d\u9109\u54e1\u9e7f\u8def\u4e00\u6bb5129\u865f","\u777f\u9091\u751f\u7269\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230419",0,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"20230927",0,0,0,2,"\u5b89\u88dd\u9a57\u6536\u5b8c\u6210",0,"20231030",0,0,0,1,"\u5b89\u88dd\u8a66\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00128 (2023-10-30\u5b89\u88dd\u5b8c\u7562) ; ",0,0],"3MX00375":["3MX00375","M220389","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6b23\u5b8f\u9054\u5efa\u8a2d(\u6797\u5b50\u908a\u6bb5)","86911457","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u6eab\u6c5f\u885715\u5df710\u865f1\u6a13","\u744b\u52c1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",254000,"20230607",254000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",635000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",254000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",127000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00375 (2024-09-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1270000,254000],"3MX00374":["3MX00374","M220389","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6b23\u5b8f\u9054\u5efa\u8a2d(\u6797\u5b50\u908a\u6bb5)","86911457","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u6eab\u6c5f\u885715\u5df710\u865f1\u6a13","\u744b\u52c1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",254000,"20230607",254000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",635000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",254000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",127000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00374 (2024-09-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1270000,254000],"3MX00373":["3MX00373","M220389","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6b23\u5b8f\u9054\u5efa\u8a2d(\u6797\u5b50\u908a\u6bb5)","86911457","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u6eab\u6c5f\u885715\u5df710\u865f1\u6a13","\u744b\u52c1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",246000,"20230607",246000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",615000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",246000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",123000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00373 (2024-09-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1230000,246000],"3MX00372":["3MX00372","M220389","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6b23\u5b8f\u9054\u5efa\u8a2d(\u6797\u5b50\u908a\u6bb5)","86911457","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u6eab\u6c5f\u885715\u5df710\u865f1\u6a13","\u744b\u52c1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",246000,"20230607",246000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",615000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",246000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",123000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00372 (2024-09-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1230000,246000],"3MH00002":["3MH00002","M220393","\u5357\u5340\u71df\u92b7\u90e8","\u8a79\u76ca\u5f70","\u5433\u80b2\u5b97","\u5ddd\u5ead\u958b\u767c\u6709\u9650\u516c\u53f8","83280323","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u660e\u7965\u88571\u865f","\u5ddd\u5ead\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230130",110000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"20230531",275000,0,0,6,"\u5b89\u88dd\u5b8c\u7562",55000,"20230630",55000,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",55000,"20230919",55000,0,0,2,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00002 (2023-09-19\u8a66\u8eca\u5b8c\u7562) ; ",550000,495000],"3MW00119":["3MW00119","M220471","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u6771\u79b9\u71df\u9020-\u53f0\u4e2d\u679c\u83dc\u5e02\u5834","84624584","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u677e\u7af9\u5317\u8def191\u865f1\u6a13","\u6771\u79b9\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",319338.22048780485,"20230301",319338.22048780485,0,0,9,"-",0,"-",0,0,0,0,"-",0,"20230829",0,0,0,3,"\u5b89\u88dd\u5b8c\u6210",1117683.771707317,"20230918",1117683.771707317,0,0,2,"\u8a66\u8eca",173454.4487804878,"20230930",173454.4487804878,0,0,2,"\u7532\u65b9\u9a57\u6536\u5b8c\u6210",159669.11024390243,"20230912",159669.11024390243,0,0,2,"\u4ea4\u8eca",173454.4487804878,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00119 (2023-09-12\u5b98\u6aa2\u5b8c\u7562) ; ",1943600,1770145.5512195122],"3MW00118":["3MW00118","M220471","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u6771\u79b9\u71df\u9020-\u53f0\u4e2d\u679c\u83dc\u5e02\u5834","84624584","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u677e\u7af9\u5317\u8def191\u865f1\u6a13","\u6771\u79b9\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",219573.77951219512,"20230301",219573.77951219512,0,0,9,"-",0,"-",0,0,0,0,"-",0,"20230817",0,0,0,3,"\u5b89\u88dd\u5b8c\u6210",768508.2282926829,"20230902",768508.2282926829,0,0,3,"\u8a66\u8eca",119265.55121951218,"20230912",119265.55121951218,0,0,2,"\u7532\u65b9\u9a57\u6536\u5b8c\u6210",109786.88975609756,"20230912",109786.88975609756,0,0,2,"\u4ea4\u8eca",119265.55121951218,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00118 (2023-09-12\u5b98\u6aa2\u5b8c\u7562) ; ",1336400,1217134.4487804878],"3MW00052":["3MW00052","M220473","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u570b\u5408\u71df\u9020-\u65b0\u5317\u5e02\u96d9\u6eaa\u6848","86653423","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u548c\u7766\u8def\u4e00\u6bb51005\u5df723\u865f","\u81f3\u6210\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u8a02\u91d1\u652f\u4ed8\u5f8c60\u5929",490315.01831501833,"20230610",490315.01831501833,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",443369.9633699634,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",122578.75457875458,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",122578.75457875458,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00052 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1178842.490842491,490315.01831501833],"3MW00051":["3MW00051","M220473","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u570b\u5408\u71df\u9020-\u65b0\u5317\u5e02\u96d9\u6eaa\u6848","86653423","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u548c\u7766\u8def\u4e00\u6bb51005\u5df723\u865f","\u81f3\u6210\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u8a02\u91d1\u652f\u4ed8\u5f8c60\u5929",483428.5714285715,"20230610",483428.5714285715,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",437142.85714285716,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120857.14285714287,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",120857.14285714287,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00051 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1162285.7142857143,483428.5714285715],"3MW00050":["3MW00050","M220473","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u570b\u5408\u71df\u9020-\u65b0\u5317\u5e02\u96d9\u6eaa\u6848","86653423","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u548c\u7766\u8def\u4e00\u6bb51005\u5df723\u865f","\u81f3\u6210\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u8a02\u91d1\u652f\u4ed8\u5f8c60\u5929",342256.4102564103,"20230610",342256.4102564103,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",309487.1794871795,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",85564.10256410258,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85564.10256410258,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00050 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",822871.794871795,342256.4102564103],"3MH00023":["3MH00023","M220476","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u4fe1\u6cd3\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8(\u69ae\u5b89\u8857)","27201521","\u5c4f\u6771\u7e23\u6f6e\u5dde\u93ae\u5149\u83ef\u91cc\u4e0a\u6d77\u8def62\u865f","\u4fe1\u6cd3\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230109",110000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00023 (2024-01-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00036":["3MH00036","M220478","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6797\u6c76\u4ead","","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u548c\u5e73\u4e8c\u8def62\u865f","\u6797\u6c76\u4ead","\u7c3d\u7d04",112000,"20230203",112000,0,0,10,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"20230825",280000,0,0,3,"-",0,"20231020",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",56000,"20231107",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00036 (2023-11-07\u8a66\u8eca\u5b8c\u7562) ; ",560000,392000],"3MX00502":["3MX00502","M220495","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5927\u65b9\u7121\u9685(\u80b2\u4ec1\u6bb5)","59276876","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u7ba1\u4ef2\u5357\u8def376\u865f5\u6a13","\u5927\u65b9\u7121\u9685\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",200000,"20230705",200000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",500000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",200000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00502 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,200000],"3MX00501":["3MX00501","M220495","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5927\u65b9\u7121\u9685(\u80b2\u4ec1\u6bb5)","59276876","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u7ba1\u4ef2\u5357\u8def376\u865f5\u6a13","\u5927\u65b9\u7121\u9685\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230705",180000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00501 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,180000],"3MH00062":["3MH00062","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",118000.00000000001,"20230222",118000.00000000001,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",295000,"20231206",0,0,0,0,"\u5b89\u88dd",59000.00000000001,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",59000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00062 (2023-12-06\u8ca8\u62b5\u5de5\u5730) ; ",590000,118000.00000000001],"3MH00061":["3MH00061","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",118000.00000000001,"20230222",118000.00000000001,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",295000,"20231206",0,0,0,0,"\u5b89\u88dd",59000.00000000001,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",59000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00061 (2023-12-06\u8ca8\u62b5\u5de5\u5730) ; ",590000,118000.00000000001],"3MH00060":["3MH00060","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231206",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00060 (2023-12-06\u8ca8\u62b5\u5de5\u5730) ; ",570000,114000],"3MH00059":["3MH00059","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231121",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00059 (2023-11-21\u8ca8\u62b5\u5de5\u5730) ; ",570000,114000],"3MH00058":["3MH00058","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231121",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00058 (2023-11-21\u8ca8\u62b5\u5de5\u5730) ; ",570000,114000],"3MH00057":["3MH00057","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231121",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00057 (2023-11-21\u8ca8\u62b5\u5de5\u5730) ; ",570000,114000],"3MH00056":["3MH00056","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00056 (2023-12-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MH00055":["3MH00055","M220504","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9226\u5b87\u5efa\u8a2d","53237829","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u516b\u5fb7\u4e2d\u8def598\u865f1\u6a13","\u9226\u5b87\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230222",114000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"\u5b89\u88dd",57000,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00055 (2023-12-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MH00094":["3MH00094","M230015","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9673\u9e97\u73cd","","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u81f3\u771f\u8def536\u865f","\u9673\u9e97\u73cd","\u7c3d\u7d04",116000,"20230303",116000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",290000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00094 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,116000],"3MH00066":["3MH00066","M230018","\u6843\u7af9\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u5f35\u8389\u51f1","\u6a02\u6a4b\u5efa\u8a2d\u6709\u9650\u516c\u53f8","83789221","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u6d77\u57d4\u91cc6\u9130\u6d77\u57d451-3\u865f","\u6a02\u6a4b\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230418",112000,0,0,7,"\u7c3d\u8a02\u5f8c90\u5929",224000,"20230717",224000,0,0,4,"\u8ca8\u62b5\u5de5\u5730",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00066 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",560000,336000],"3MH00076":["3MH00076","M230022","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u65fa\u65fa\u5de5\u7a0b\u884c-\u912d\u79cb\u6708","39805906","\u53f0\u4e2d\u5e02\u9f8d\u4e95\u5340\u65b0\u8208\u8def25\u5df74\u5f045\u865f","\u65fa\u65fa\u5de5\u7a0b\u884c","\u7c3d\u7d04",0,"20230329",0,0,0,8,"\u7c3d\u7d04\u5f8c90\u5929",0,"20230627",0,0,0,5,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00076 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",0,0],"3MW00024":["3MW00024","M230023","\u6843\u7af9\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u5f35\u8389\u51f1","\u6b63\u6d32\u5305\u88dd\u6a5f\u6750\u80a1\u4efd\u6709\u9650\u516c\u53f8","84199011","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u95dc\u723a\u5317\u8def34\u865f1\u6a13","\u6b63\u6d32\u5305\u88dd\u6a5f\u6750\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",212100,"20230310",212100,0,0,8,"\u7c3d\u8a02\u5f8c30\u5929",424200,"20230409",424200,0,0,7,"\u8ca8\u62b5\u5de5\u5730",212100,"20230721",212100,0,0,4,"\u5b89\u88dd\u5b8c\u6210",106050,"20230905",106050,0,0,3,"\u8a66\u8eca",106050,"20230921",106050,0,0,2,"-",0,"20230926",0,0,0,2,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00024 (2023-09-26\u5b98\u6aa2\u5b8c\u7562) ; ",1060500,1060500],"3MX00048":["3MX00048","M230032","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6602\u965e\u71df\u9020-\u6607\u967d\u9577\u7167","90219289","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u6f84\u89c0\u8def56\u865f","\u6602\u965e\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",250000,"20230428",250000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",625000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",125000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00048 (2023-11-15\u8ca8\u62b5\u5de5\u5730) ; ",1250000,250000],"3MW00198":["3MW00198","M230047","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6625\u6728\u5efa\u8a2d-\u9e9f\u611b\u6848","89408065","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u83ef\u8def251\u865f13\u6a13","\u6625\u6728\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",184000,"20230412",184000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",460000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",184000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00198 (2024-01-04\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,184000],"3MX00447":["3MX00447","M230051","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u5b8f\u5bcc\u5efa\u8a2d\/\u6210\u5dde\u6bb5","53429811","\u65b0\u5317\u5e02\u8606\u6d32\u5340\u6c38\u5eb7\u88571\u5df715\u865f6\u6a13","\u5b8f\u5bcc\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",346500,"20230823",346500,0,0,3,"\u51fa\u8ca8\u524d90\u5929",693000,"20240502",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",346500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",173250,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",173250,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00447 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1732500,346500],"3MX00446":["3MX00446","M230051","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u5b8f\u5bcc\u5efa\u8a2d\/\u6210\u5dde\u6bb5","53429811","\u65b0\u5317\u5e02\u8606\u6d32\u5340\u6c38\u5eb7\u88571\u5df715\u865f6\u6a13","\u5b8f\u5bcc\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",333900,"20230823",333900,0,0,3,"\u51fa\u8ca8\u524d90\u5929",667800,"20240502",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",333900,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",166950,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",166950,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00446 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1669500,333900],"3MH00039":["3MH00039","M230058","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8449\u5f65\u5ef7(\u4f55\u671d\u5b97\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u4e0a\u5c07\u8def\u4e00\u6bb533\u5df738\u5f0431\u865f","\u8449\u5f65\u5ef7","\u7c3d\u7d04",106000,"20230208",106000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",291000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00039 (2023-12-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",556000,106000],"3MH00040":["3MH00040","M230059","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8449\u5f65\u5ef7(\u4f55\u671d\u9806\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u4e0a\u5c07\u8def\u4e00\u6bb533\u5df738\u5f0431\u865f","\u8449\u5f65\u5ef7","\u7c3d\u7d04",106000,"20230208",106000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",291000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00040 (2023-12-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",556000,106000],"3MH00377":["3MH00377","M230060","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u570b\u5ddd-\u6e38\u9577\u559c\u7389\u7530\u8fb2\u820d","40970100","\u5b9c\u862d\u7e23\u7901\u6eaa\u9109\u6b66\u6696\u8def133-21\u865f","\u9577\u5c55\u5de5\u7a0b\u4f01\u696d","\u7c3d\u7d04",106000,"20230621",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00377 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00041":["3MH00041","M230061","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u674e\u5fd7\u5b8f-\u4e09\u661f\u8fb2\u820d\u65b0\u5efa\u5de5\u7a0b","","\u5b9c\u862d\u7e23\u54e1\u5c71\u9109\u5927\u6e56\u5341\u8def153\u865f","\u674e\u5fd7\u5b8f","\u7c3d\u7d04",106000,"20230210",106000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00041 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00047":["3MH00047","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157000,"20230214",157000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",392500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00047 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",785000,157000],"3MH00046":["3MH00046","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230214",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00046 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00045":["3MH00045","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230214",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00045 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00044":["3MH00044","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230214",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00044 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00043":["3MH00043","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230214",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00043 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00042":["3MH00042","M230062","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u749f\u798f\u5efa\u8a2d-\u4e94\u7d50\u9109\u6848\u96c6\u5408\u4f4f\u5b85","83551583","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u5149\u69ae\u8def330\u865f1\u6a13","\u749f\u798f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230214",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00042 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00093":["3MH00093","M230064","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u79c9\u85d9\u71df\u9020-\u6234\u6b23\u54f2\u4f4f\u5b85\u65b0\u5efa\u5de5\u7a0b","","\u65b0\u7af9\u7af9\u5317\u5e02\u897f\u6ff1\u8def\u4e00\u6bb569\u5df710\u865f","\u79c9\u85d9\u71df\u9020-\u6234\u6b23\u54f2\u4f4f\u5b85\u65b0\u5efa\u5de5\u7a0b","\u7c3d\u7d04",116000,"20230420",116000,0,0,7,"\u7c3d\u8a02\u5f8c60\u5929",232000,"20230619",232000,0,0,5,"\u8ca8\u62b5\u5de5\u5730",116000,"20230614",116000,0,0,5,"-",0,"20230911",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",58000,"20230913",58000,0,0,2,"-",0,"20231121",0,0,0,0,"\u4ea4\u8eca",58000,"20230913",58000,0,0,2,"-",0,"-",0,0,0,0,"3MH00093 (2023-09-13\u5df2\u79fb\u4ea4) ; ",580000,580000],"3MW00067":["3MW00067","M230071","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u611b\u5c71\u6797\u5efa\u8a2d-\u571f\u57ce\u91d1\u57ce\u5e1d\u5bf6","22190686","\u53f0\u5317\u5e02\u5927\u5b89\u5340\u5fe0\u5b5d\u6771\u8def\u56db\u6bb5166\u865f11\u6a13\u4e4b2","\u611b\u5c71\u6797\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",240000,"20230428",240000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"20230522",240000,0,0,6,"-",0,"20230710",0,0,0,4,"\u8a66\u8eca\u5b8c\u5de5",240000,"20230714",240000,0,0,4,"-",0,"20230811",0,0,0,3,"\u4ea4\u8eca",80000,"20230719",80000,0,0,4,"-",0,"-",0,0,0,0,"3MW00067 (2023-07-19\u5df2\u79fb\u4ea4) ; ",800000,800000],"3MH00054":["3MH00054","M230072","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d\u9e7d\u6c34\u6848","24987479","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f1\u6a13","\u4e09\u76c8\u71df\u5efa\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230407",114000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20230524",285000,0,0,6,"-",0,"20230619",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",114000,"20231112",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00054 (2023-11-12\u8a66\u8eca\u5b8c\u7562) ; ",570000,399000],"3MH00053":["3MH00053","M230072","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d\u9e7d\u6c34\u6848","24987479","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f1\u6a13","\u4e09\u76c8\u71df\u5efa\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230407",110000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"20230524",275000,0,0,6,"-",0,"20230619",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",110000,"20231112",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00053 (2023-11-12\u8a66\u8eca\u5b8c\u7562) ; ",550000,385000],"3MH00064":["3MH00064","M230073","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u65ed\u767c\u958b\u767c\u5efa\u8a2d(\u65ed\u58857)","24921694","\u53f0\u5357\u5e02\u5357\u5340\u4e2d\u83ef\u897f\u8def\u4e00\u6bb5134\u865f1\u6a13","\u65ed\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230302",112000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00064 (2024-05-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00063":["3MH00063","M230073","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u65ed\u767c\u958b\u767c\u5efa\u8a2d(\u65ed\u58857)","24921694","\u53f0\u5357\u5e02\u5357\u5340\u4e2d\u83ef\u897f\u8def\u4e00\u6bb5134\u865f1\u6a13","\u65ed\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230302",112000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00063 (2024-05-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00105":["3MH00105","M230074","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u4ec1\u52c7\u8def","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",144000,"20230301",144000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",144000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00105 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",720000,144000],"3MH00100":["3MH00100","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00100 (2024-05-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00099":["3MH00099","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00099 (2024-05-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00098":["3MH00098","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00098 (2024-05-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00097":["3MH00097","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00097 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00096":["3MH00096","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00096 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00095":["3MH00095","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00095 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00104":["3MH00104","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00104 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00103":["3MH00103","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00103 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00102":["3MH00102","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00102 (2024-06-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MH00101":["3MH00101","M230075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5065\u6689\u5efa\u8a2d-\u6f84\u65b0\u4e94\u8857","27696185","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u592a\u83ef\u885730\u865f","\u5065\u6689\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u5b9a30\u5929\u5167",111000,"20230301",111000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",111000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00101 (2024-06-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",555000,111000],"3MW00515":["3MW00515","M230077","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u50b3\u627f\u5efa\u8a2d-\u4e94\u7d50\u5354\u548c\u4e00\u6bb5\u96c6\u5408\u4f4f\u5b85","54959767","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def2\u6bb5133\u865f","\u50b3\u627f\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",178000,"20230719",178000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",445000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",178000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",89000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00515 (2024-02-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",890000,178000],"3MW00376":["3MW00376","M230078","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u738b\u5f64\u7192","","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u5e73\u7b49\u8def11\u865f","\u738b\u5f64\u7192","\u7c3d\u7d04",180000,"20230530",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00376 (2024-04-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,180000],"3MW00110":["3MW00110","M230089","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u91c7\u7bc9\u71df\u9020","85107073","\u81fa\u5357\u5e02\u5b89\u5b9a\u5340\u6e2f\u5c3e\u91cc\u4e0b\u6d32\u5b5017\u4e4b19\u865f1\u6a13","\u91c7\u7bc9\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",184000,"20230308",184000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",460000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",184000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00110 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,184000],"3MX00132":["3MX00132","M230103","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6566\u67cf\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","86057305","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u4e5d\u5982\u4e8c\u6a02597\u865f12\u6a13\u4e4b6","\u6566\u67cf\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20230330",190000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",475000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00132 (2024-11-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",950000,190000],"3MW00514":["3MW00514","M230104","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5927\u6649\u71df\u9020-\u5584\u5316\u6d3b\u52d5\u4e2d\u5fc3","42902760","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u7d93\u6b66\u8def1\u865f1\u6a13","\u5927\u6649\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230731",160000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00514 (2024-03-13\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MW00117":["3MW00117","M230105","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u91d1\u838e\u5de5\u7a0b\u6709\u9650\u516c\u53f8","27414159","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u5317\u8208\u8857100\u865f","\u91d1\u838e\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230323",180000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00117 (2024-03-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,180000],"3MH00120":["3MH00120","M230106","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u661f\u9054\u5de5\u7a0b\u884c-\u8463\u6e05\u6587\u4f4f\u5b85\u6848","40898380","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u7db2\u5bee\u91cc\u6587\u5316\u8def249\u865f1\u6a13","\u661f\u9054\u5de5\u7a0b\u884c","\u7c3d\u7d04",107000,"20230501",107000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",267500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00120 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",535000,107000],"3MH00149":["3MH00149","M230109","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8c50\u5bcc\u5730\u7522(\u4e8c\u82d3\u6848)","90457253","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u4e2d\u5c71\u4e00\u8def188\u865f2\u6a13","\u8c50\u5bcc\u5730\u7522\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",69000,"20230411",69000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",345000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",207000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",69000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00149 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",690000,69000],"3MX00109":["3MX00109","M230112","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5e38\u52dd\u946b\u5efa\u8a2d\uff08\u5c71\u660e\u6bb5\uff09","90112738","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u4ec1\u5b5d\u8def320\u865f","\u5e38\u52dd\u946b\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230311",160000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00109 (2024-03-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MH00049":["3MH00049","M230113","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u9ec3\u66c9\u82b3","","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u6c38\u8208\u8def331\u865f","\u9ec3\u66c9\u82b3","\u7c3d\u7d04",144000,"20230221",144000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",144000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00049 (2024-03-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",720000,144000],"3MH00285":["3MH00285","M230121","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u8c50\u9245\u958b\u767c(\u4ec1\u611b\u6bb5)","82836470","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u91cd\u5049\u88573\u865f","\u8c50\u9245\u958b\u767c\u5efa\u7bc9\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20230517",120000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00285 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,120000],"3MH00284":["3MH00284","M230121","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u8c50\u9245\u958b\u767c(\u4ec1\u611b\u6bb5)","82836470","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u91cd\u5049\u88573\u865f","\u8c50\u9245\u958b\u767c\u5efa\u7bc9\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20230517",120000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00284 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,120000],"3MH00301":["3MH00301","M230134","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bec\u5ba4\u7a7a\u9593\u8a2d\u8a08\u6709\u9650\u516c\u53f8","24918163","\u53f0\u5357\u5e02\u6771\u5340\u6771\u9580\u8def\u4e00\u6bb5212\u5df710\u865f1\u6a13","\u5bec\u5ba4\u7a7a\u9593\u8a2d\u8a08\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",116000,"20230523",116000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",290000,"20230928",290000,0,0,2,"-",0,"20231212",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"20231219",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00301 (2023-12-19\u8a66\u8eca\u5b8c\u7562) ; ",580000,406000],"3MH00627":["3MH00627","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00627 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00626":["3MH00626","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00626 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00625":["3MH00625","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00625 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00624":["3MH00624","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00624 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00623":["3MH00623","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00623 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00622":["3MH00622","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230822",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00622 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00621":["3MH00621","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230822",112000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00621 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00620":["3MH00620","M230137","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","29022587","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u535a\u611b\u56db\u8def2\u865f19\u6a13\u4e4b1","\u767e\u6625\u967d\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230822",112000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00620 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00571":["3MH00571","M230139","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5e1d\u52f3\u5be6\u696d-\u5927\u5bee\u96c6\u5408\u4f4f\u5b85","85948435","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u4e2d\u6b63\u8def455\u865f","\u5e1d\u52f3\u5be6\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230802",140000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00571 (2024-06-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00570":["3MH00570","M230139","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5e1d\u52f3\u5be6\u696d-\u5927\u5bee\u96c6\u5408\u4f4f\u5b85","85948435","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u4e2d\u6b63\u8def455\u865f","\u5e1d\u52f3\u5be6\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230802",140000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00570 (2024-06-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00106":["3MH00106","M230148","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u4e5d\u755d\u7530\u6709\u9650\u516c\u53f8","90157143","\u53f0\u5317\u5e02\u842c\u83ef\u5340\u897f\u5be7\u5357\u8def307\u865f2\u6a13","\u4e5d\u755d\u7530\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",138000,"20230308",138000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",345000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",138000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",69000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00106 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",690000,138000],"3MH00504":["3MH00504","M230156","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u80e1\u4e00\u5e06-\u6c11\u6b0a\u8def\u5ba4\u5916\u589e\u5efa\u6848","","\u65b0\u7af9\u5e02\u5317\u5340\u897f\u5927\u8def60\u865f","\u80e1\u5148\u751f-\u6c11\u6b0a\u8def\u5ba4\u5916\u589e\u5efa\u6848","\u7c3d\u7d04",120000,"20230717",120000,0,0,4,"\u7c3d\u7d04\u5f8c60\u5929",240000,"20230915",240000,0,0,2,"\u8ca8\u62b5\u5de5\u5730",120000,"20231017",120000,0,0,1,"-",0,"20231215",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",60000,"20231219",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00504 (2023-12-19\u8a66\u8eca\u5b8c\u7562) ; ",600000,480000],"3MH00303":["3MH00303","M230157","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u540c\u57ce\u571f\u6728(\u6797\u5b5c\u4ead)","69875891","\u9ad8\u96c4\u5e02\u5ca1\u5c71\u5340\u65b0\u5e84\u8def100-7\u865f","\u540c\u57ce\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",106000,"20230520",106000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00303 (2024-01-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MW00292":["3MW00292","M230158","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u7f85\u5d07\u52f3(\u52f3\u98a8\u70d8\u57f9\u574a)","","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u73cd\u73e0\u8def129\u865f","\u7f85\u5d07\u52f3(\u52f3\u98a8\u70d8\u57f9\u574a)","\u7c3d\u7d04",254000,"20230524",254000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",635000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",254000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",127000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00292 (2024-01-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1270000,254000],"3MW00300":["3MW00300","M230160","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5de8\u91c7\u71df\u9020-\u5167\u9580\u89c0\u5149\u4f11\u9592\u5712\u5340","16800669","\u9ad8\u96c4\u5e02\u6960\u76db\u8857124\u865f3\u6a13","\u5de8\u91c7\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230531",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00300 (2024-03-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,180000],"3MX00133":["3MX00133","M230165","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u9d3b\u5c45\u71df\u9020(\u5229\u767e\u7279\u5132\u904b\u4e2d\u5fc3)","53887301","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6c11\u6b0a\u4e00\u8def251\u865f27\u6a13","\u9d3b\u5c45\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",196000,"20230503",196000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",490000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",196000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00133 (2024-01-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,196000],"3MH00294":["3MH00294","M230166","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u5bcc\u5fb7\u958b\u767c\u6709\u9650\u516c\u53f8-\u6771\u6d77\u6bb598-54\u5730\u865f","82831876","\u81fa\u4e2d\u5e02\u9f8d\u4e95\u5340\u6771\u6d77\u91cc\u904a\u5712\u5317\u8def178\u5df717\u865f2\u6a13","\u5bcc\u5fb7\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",130000,"20230605",130000,0,0,6,"\u51fa\u8ca8\u524d120\u5929",260000,"20230814",260000,0,0,3,"\u8ca8\u62b5\u5de5\u5730",130000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00294 (2023-12-12\u8ca8\u62b5\u5de5\u5730) ; ",650000,390000],"3MH00152":["3MH00152","M230169","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u946b\u6d77\u5efa\u8a2d-\u5f8c\u6e2f\u6771\u6bb5","27711658","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u6c11\u8def387\u5df734\u865f1\u6a13","\u946b\u6d77\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",109000,"20230407",109000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",292500,"20231124",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",109000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00152 (2023-11-24\u8ca8\u62b5\u5de5\u5730) ; ",565000,109000],"3MH00151":["3MH00151","M230169","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u946b\u6d77\u5efa\u8a2d-\u5f8c\u6e2f\u6771\u6bb5","27711658","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u6c11\u8def387\u5df734\u865f1\u6a13","\u946b\u6d77\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",109000,"20230407",109000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",292500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",109000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00151 (2023-12-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,109000],"3MH00150":["3MH00150","M230169","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u946b\u6d77\u5efa\u8a2d-\u5f8c\u6e2f\u6771\u6bb5","27711658","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u5bcc\u6c11\u8def387\u5df734\u865f1\u6a13","\u946b\u6d77\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",109000,"20230407",109000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",292500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",109000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00150 (2023-12-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,109000],"3MH00107":["3MH00107","M230171","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6e38\u672c\u5357","","\u5b9c\u862d\u7e23\u7f8e\u548c\u8def\u4e00\u6bb5177\u5df728\u865f","\u6e38\u672c\u5357","\u7c3d\u7d04",104000,"20230303",104000,0,0,9,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"20231031",340000,0,0,1,"-",0,"20231120",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00107 (2023-11-20\u5b89\u88dd\u5b8c\u7562) ; ",600000,444000],"3MH00202":["3MH00202","M230176","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u83ef\u660e\u92fc\u9435\u80a1\u4efd\u6709\u9650\u516c\u53f8","22539898","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u4e8c\u8056\u4e8c\u8def259\u865f","\u83ef\u660e\u92fc\u9435\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230504",110000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00202 (2024-01-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00121":["3MH00121","M230205","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25164937","\u53f0\u4e2d\u5e02\u9727\u5cf0\u5340\u672c\u5802\u91cc\u6797\u68ee\u8def608\u865f1\u6a13","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230501",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20230524",189000,0,0,6,"-",0,"20230721",0,0,0,4,"\u8a66\u8eca\u5b8c\u5de5",189000,"20230808",189000,0,0,3,"-",0,"20230818",0,0,0,3,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00121 (2023-08-18\u5b98\u6aa2\u5b8c\u7562) ; ",630000,567000],"3MH00124":["3MH00124","M230205","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25164937","\u53f0\u4e2d\u5e02\u9727\u5cf0\u5340\u672c\u5802\u91cc\u6797\u68ee\u8def608\u865f1\u6a13","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230501",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20230524",189000,0,0,6,"-",0,"20230629",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",189000,"20230725",189000,0,0,4,"-",0,"20230818",0,0,0,3,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00124 (2023-08-18\u5b98\u6aa2\u5b8c\u7562) ; ",630000,567000],"3MH00123":["3MH00123","M230205","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25164937","\u53f0\u4e2d\u5e02\u9727\u5cf0\u5340\u672c\u5802\u91cc\u6797\u68ee\u8def608\u865f1\u6a13","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230501",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20230524",189000,0,0,6,"-",0,"20230629",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",189000,"20230712",189000,0,0,4,"-",0,"20230818",0,0,0,3,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00123 (2023-08-18\u5b98\u6aa2\u5b8c\u7562) ; ",630000,567000],"3MH00122":["3MH00122","M230205","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25164937","\u53f0\u4e2d\u5e02\u9727\u5cf0\u5340\u672c\u5802\u91cc\u6797\u68ee\u8def608\u865f1\u6a13","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230501",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20230524",189000,0,0,6,"-",0,"20230704",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",189000,"20230808",189000,0,0,3,"-",0,"20230818",0,0,0,3,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00122 (2023-08-18\u5b98\u6aa2\u5b8c\u7562) ; ",630000,567000],"3MH00131":["3MH00131","M230206","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u68ee\u5c45\u5ba4\u5167\u88dd\u4fee(\u516d\u8208\u6bb5)","59001146","\u5609\u7fa9\u5e02\u897f\u5340\u78da\u78d8\u91cc\u7389\u5eb7\u8def396\u865f","\u68ee\u5c45\u5ba4\u5167\u88dd\u4fee\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20230328",120000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"20231117",0,0,0,0,"-",0,"20231210",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00131 (2023-12-10\u5b89\u88dd\u5b8c\u7562) ; ",600000,120000],"3MH00115":["3MH00115","M230212","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8aa0\u5cf0\u5efa\u8a2d(\u5b89\u5b89\u5152\u80a1\u4efd\u6709\u9650\u516c\u53f8)","53077323","\u53f0\u5317\u5e02\u842c\u83ef\u5340\u5357\u5be7\u8def45\u4e4b2\u865f8\u6a13","\u8aa0\u8b7d\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",214000,"20230320",214000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",565000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",214000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",107000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00115 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1100000,214000],"3MH00111":["3MH00111","M230214","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8ac7\u9054\u6295\u8cc7\u80a1\u4efd\u6709\u9650\u516c\u53f8","50805235","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u82d3\u5357\u8def7\u865f","\u8ac7\u9054\u6295\u8cc7\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230313",104000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230609",260000,0,0,5,"-",0,"20230630",0,0,0,5,"\u8a66\u8eca\u5b8c\u5de5",104000,"20230717",104000,0,0,4,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00111 (2023-07-17\u8a66\u8eca\u5b8c\u7562) ; ",520000,468000],"3MH00113":["3MH00113","M230217","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8a31\u9032\u6771(\u6c88\u79c0\u5a25\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u4e2d\u83ef\u8def10\u865f","\u8a31\u9032\u6771","\u7c3d\u7d04",104000,"20230314",104000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20231006",260000,0,0,1,"-",0,"20231014",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231103",104000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00113 (2023-11-03\u8a66\u8eca\u5b8c\u7562) ; ",520000,468000],"3MW00108":["3MW00108","M230218","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u52dd\u7bc9\u5efa\u8a2d\u6709\u9650\u516c\u53f8","83157560","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6771\u6751\u91cc\u6821\u820d\u4e8c\u8def35\u865f7\u6a13","\u52dd\u7bc9\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20230314",174000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",435000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",87000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00108 (2024-06-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",870000,174000],"3MH00130":["3MH00130","M230238","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u738b\u8272\u9cf3","","\u53f0\u4e2d\u5e02\u5317\u5340\u6587\u660c\u67712\u885716\u865f","\u738b\u8272\u9cf3","\u7c3d\u7d04",189000,"20230420",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20230629",189000,0,0,5,"-",0,"20230828",0,0,0,3,"\u8a66\u8eca\u5b8c\u5de5",189000,"20230923",189000,0,0,2,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00130 (2023-11-08\u5df2\u79fb\u4ea4) ; ",630000,567000],"3MH00173":["3MH00173","M230239","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90643617","\u53f0\u4e2d\u5e02\u897f\u5340\u671d\u967d\u885711\u865f1\u6a13","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230502",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00173 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00175":["3MH00175","M230240","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90643617","\u53f0\u4e2d\u5e02\u897f\u5340\u671d\u967d\u885711\u865f1\u6a13","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230502",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",252000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00175 (2024-03-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,189000],"3MH00174":["3MH00174","M230240","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90643617","\u53f0\u4e2d\u5e02\u897f\u5340\u671d\u967d\u885711\u865f1\u6a13","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230502",189000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",252000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00174 (2024-03-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,189000],"3MW00139":["3MW00139","M230266","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u7f8e\u800c\u5feb\u570b\u969b\u80a1\u4efd\u6709\u9650\u516c\u53f8","90101970","\u53f0\u5317\u5e02\u5357\u6e2f\u5340\u5357\u6e2f\u8def3\u6bb549\u5df78\u865f1\u6a13","\u7f8e\u800c\u5feb\u751f\u6d3b\u7f8e\u5b78\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",182000,"20230508",182000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",515000,"20231107",0,0,0,0,"-",0,"20231201",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",182000,"20231218",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",91000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00139 (2023-12-18\u8a66\u8eca\u5b8c\u7562) ; ",970000,182000],"3MH00306":["3MH00306","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00306 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00305":["3MH00305","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00305 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00304":["3MH00304","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00304 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00309":["3MH00309","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00309 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00308":["3MH00308","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00308 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00307":["3MH00307","M230270","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5cb3\u9298\u5efa\u7bc9(\u725b\u6f6e\u57d4\u6bb5)","83607989","\u9ad8\u96c4\u5e02\u65b0\u8208\u5340\u6587\u5316\u8def15-3\u865f","\u5cb3\u9298\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230516",110000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00307 (2024-06-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00153":["3MH00153","M230275","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u674e\u6771\u9060","","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u5f8c\u6e2f\u5df7122\u865f","\u674e\u6771\u9060","\u7c3d\u7d04",117000,"20230407",117000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232500,"20231124",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",117000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00153 (2023-11-24\u8ca8\u62b5\u5de5\u5730) ; ",525000,117000],"3MH00195":["3MH00195","M230284","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5289\u7389\u9594-\u65bd\u6d3d\u6210\u649a\u7dda\u53b0","","\u5f70\u5316\u7e23\u798f\u8208\u9109\u5f70\u9e7f\u8def\u4e03\u6bb5112\u5df787\u865f","\u5289\u7389\u9594","\u7c3d\u7d04",180000,"20230425",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00195 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MW00253":["3MW00253","M230288","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u559c\u8000\u5efa\u8a2d","58534539","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u9ece\u660e\u91cc\u74b0\u5e02\u6771\u8def\u4e8c\u6bb5195\u865f","\u559c\u8000\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",172000,"20230420",172000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",430000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",172000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",86000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00253 (2024-01-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",860000,172000],"3MH00127":["3MH00127","M230301","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u674e\u71e6\u5fe0\u8fb2\u820d","","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u5fb7\u8208\u4e94\u8def9\u865f","\u90b1\u6c38\u88d5","\u7c3d\u7d04",106000,"20230328",106000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00127 (2024-04-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00194":["3MH00194","M230303","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u6587\u6377\u8fb2\u820d","","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u67ef\u6797\u6751\u67ef\u6797\u65b0\u8def90\u865f","\u6797\u6e2d\u5ddd","\u7c3d\u7d04",106000,"20230424",106000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00194 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00792":["3MH00792","M230305","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6cc9\u946b\u71df\u9020\u6709\u9650\u516c\u53f8(\u9673\u5efa\u5f70\u6848)","93376585","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u91cd\u60e0\u8857205\u865f","\u6cc9\u946b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20231004",160000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00792 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MH00282":["3MH00282","M230327","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7396\u592a\u5efa\u8a2d\u516d\u671f","56701237","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u6771\u5c6f\u91cc3\u9130\u5927\u5c6f60-2\u865f1\u6a13","\u7396\u592a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230516",114000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20230919",285000,0,0,2,"-",0,"20231102",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",114000,"20231122",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00282 (2023-11-22\u8a66\u8eca\u5b8c\u7562) ; ",570000,399000],"3MH00126":["3MH00126","M230332","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5f35\u5efa\u660e\u6e38\u9326\u714c\u8fb2\u820d","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u4e94\u7d50\u8def\u4e8c\u6bb5266\u5df712\u5f047\u865f","\u5f35\u5efa\u660e","\u7c3d\u7d04",109000,"20230328",109000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",109000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00126 (2024-02-21\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,109000],"3MH00125":["3MH00125","M230333","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5f35\u5efa\u660e\u6e38\u9326\u798e\u8fb2\u820d","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u4e94\u7d50\u8def\u4e8c\u6bb5266\u5df712\u5f047\u865f","\u5f35\u5efa\u660e","\u7c3d\u7d04",109000,"20230328",109000,0,0,8,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",277500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",109000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00125 (2024-02-21\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,109000],"3MX00176":["3MX00176","M230339","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6b63\u548c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","16464231","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u65b0\u4e0a\u8857280\u865f","\u6b63\u548c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230414",140000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00176 (2024-01-24\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MW00369":["3MW00369","M230341","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5eb7\u5ead\u570b\u969b\u80a1\u4efd\u6709\u9650\u516c\u53f8","90173848","\u9ad8\u96c4\u5e02\u5c0f\u6e2f\u5340\u677e\u5d17\u8def142\u5df78-3\u865f","\u5eb7\u5ead\u570b\u969b\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",204000,"20230626",204000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",510000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",102000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00369 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1020000,204000],"3MH00148":["3MH00148","M230346","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u674e\u5fd7\u5b8f(\u6797\u7d20\u6708\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u54e1\u5c71\u9109\u5927\u6e56\u5341\u8def153\u865f","\u674e\u5fd7\u5b8f","\u7c3d\u7d04",106000,"20230407",106000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"20231011",360000,0,0,1,"-",0,"20231107",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106000,"20231127",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00148 (2023-11-27\u8a66\u8eca\u5b8c\u7562) ; ",625000,466000],"3MW00963":["3MW00963","M230366","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u79c0\u6c34-\u8b1d\u5b9c\u771f","","\u5f70\u5316\u5e02\u4e2d\u5c71\u8def\u4e00\u6bb5551\u865f","\u8b1d\u5b9c\u771f","\u7c3d\u7d04",294000,"20231122",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",319000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00963 (2024-06-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1005000,0],"3MW00190":["3MW00190","M230371","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6e56\u5167\u5168\u806f\u5ee0\u623f","50946262","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u69ae\u5fb7\u885734\u5df718\u865f1\u6a13","\u777f\u6cd3\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",170000,"20230505",170000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",425000,"20230706",425000,0,0,4,"-",0,"20230721",0,0,0,4,"\u8a66\u8eca\u5b8c\u5de5",170000,"20230807",170000,0,0,3,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00190 (2023-08-07\u8a66\u8eca\u5b8c\u7562) ; ",850000,765000],"3MX00314":["3MX00314","M230373","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u5c55\u9686\u5efa\u8a2d\/\u65e5\u65b0\u6bb5","54243503","\u57fa\u9686\u5e02\u5b89\u6a02\u8def\u4e00\u6bb57\u865f","\u5c55\u9686\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",216300,"20230526",216300,0,0,6,"\u51fa\u8ca8\u524d30\u5929",432600,"20240101",0,0,0,0,"\u8ca8\u5e95\u5de5\u5730",216300,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",108150,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",108150,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00314 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",1081500,216300],"3MX00203":["3MX00203","M230375","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6771\u9f8d\u5730\u7522-\u65b0\u548c\u6bb5\u96c6\u5408\u4f4f\u5b85\u6848","85098047","\u5c4f\u6771\u7e23\u6771\u6e2f\u93ae\u671d\u9686\u8def74\u865f","\u6771\u9f8d\u5730\u7522\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230502",160000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00203 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MW00258":["3MW00258","M230377","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5149\u65b0\u9858\u666f\u5efa\u8a2d-\u4e2d\u8def\u6848","91119371","\u6843\u5712\u5e02\u6843\u5712\u5340\u8c50\u6797\u91cc\u4e09\u6c11\u8def\u4e09\u6bb5625\u865f1\u6a13","\u5149\u6b23\u9858\u666f\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",348000,"20230703",348000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",464000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00258 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1160000,348000],"3MH00302":["3MH00302","M230379","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8208\u6bc5\u5de5\u7a0b\u884c\u71b1\u6cb3\u4e00\u8857\u6848","82758312","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u676d\u5dde\u6771\u885772\u865f3\u6a13","\u8208\u6bc5\u5de5\u7a0b\u884c","\u7c3d\u7d04",114000,"20230621",114000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00302 (2024-01-24\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MW00209":["3MW00209","M230391","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u53f0\u7ff0\u71df\u9020","12901510","\u53f0\u4e2d\u5e02\u897f\u5c6f\u5340\u5be7\u590f\u6771\u4e03\u885715\u865f1\u6a13","\u53f0\u7ff0\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",222000,"20230509",222000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",222000,"20230914",222000,0,0,2,"-",0,"20231012",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",222000,"20231204",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00209 (2023-12-04\u8a66\u8eca\u5b8c\u7562) ; ",740000,444000],"3MH00546":["3MH00546","M230394","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5b9c\u7e09\u5efa\u8a2d(\u51ac\u5c71\u900f\u5929\u4f4f\u5b85)","83085200","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u6f22\u6c11\u91cc\u4e2d\u5c71\u8def\u56db\u6bb511\u5df76\u865f","\u5b9c\u7e09\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106600,"20230817",106600,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",266500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53300,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00546 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",533000,106600],"3MH00545":["3MH00545","M230394","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5b9c\u7e09\u5efa\u8a2d(\u51ac\u5c71\u900f\u5929\u4f4f\u5b85)","83085200","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u6f22\u6c11\u91cc\u4e2d\u5c71\u8def\u56db\u6bb511\u5df76\u865f","\u5b9c\u7e09\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106600,"20230817",106600,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",266500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53300,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00545 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",533000,106600],"3MH00544":["3MH00544","M230394","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5b9c\u7e09\u5efa\u8a2d(\u51ac\u5c71\u900f\u5929\u4f4f\u5b85)","83085200","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u6f22\u6c11\u91cc\u4e2d\u5c71\u8def\u56db\u6bb511\u5df76\u865f","\u5b9c\u7e09\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106600,"20230817",106600,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",266500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53300,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00544 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",533000,106600],"3MX00201":["3MX00201","M230400","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9708\u665f\u80a1\u4efd\u6709\u9650\u516c\u53f8-\u516b\u91cc\u4e2d\u5c71\u6bb5\u96c6\u5408\u4f4f\u5b85","89181969","\u65b0\u5317\u5e02\u516b\u91cc\u5340\u4e2d\u5c71\u8def\u4e8c\u6bb5279\u865f","\u9708\u665f\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",150000,"20230518",150000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",375000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00201 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,150000],"3MW00212":["3MW00212","M230403","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5b9c\u6069\u5efa\u8a2d","42946583","\u5b9c\u862d\u7e23\u7901\u6eaa\u9109\u5927\u5fe0\u6751\u5927\u5fe0\u8def111\u865f1\u6a13","\u5b9c\u6069\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",172000,"20231012",172000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",430000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",172000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",86000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00212 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",860000,172000],"3MP00254":["3MP00254","M230408","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u7a46\u523b\u5ba4\u5167-\u65b0\u7af9\u6848","47024714","\u53f0\u5317\u5e02\u5927\u5b89\u5340\u65b0\u751f\u5357\u8def\u4e00\u6bb5151\u5df731\u865f","\u7a46\u523b\u5ba4\u5167\u88dd\u4fee\u8a2d\u8a08\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",150000,"20230518",150000,0,0,6,"\u7c3d\u8a02\u5f8c60\u5929",300000,"20230717",300000,0,0,4,"\u8ca8\u62b5\u5de5\u5730",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00254 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",750000,450000],"3MX00291":["3MX00291","M230410","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u7bc9\u5eb7\u5efa\u8a2d-\u65b0\u5e97\u5b89\u57ce\u6bb5","82999071","\u53f0\u5317\u5e02\u4fe1\u7fa9\u5340\u677e\u5fb7\u8def161\u865f11\u6a13\u4e4b2","\u7bc9\u5eb7\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",204000,"20230531",204000,0,0,6,"\u7c3d\u8a02\u5f8c60\u65e5\u5167",408000,"20230730",408000,0,0,4,"\u8ca8\u62b5\u5de5\u5730",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",102000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",102000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00291 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",1020000,612000],"3MX00290":["3MX00290","M230410","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u7bc9\u5eb7\u5efa\u8a2d-\u65b0\u5e97\u5b89\u57ce\u6bb5","82999071","\u53f0\u5317\u5e02\u4fe1\u7fa9\u5340\u677e\u5fb7\u8def161\u865f11\u6a13\u4e4b2","\u7bc9\u5eb7\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",226000,"20230531",226000,0,0,6,"\u7c3d\u8a02\u5f8c60\u65e5\u5167",452000,"20230730",452000,0,0,4,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",113000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",113000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00290 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",1130000,678000],"3MH00313":["3MH00313","M230412","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u52dd\u5fb7\u71df\u9020(\u9806\u5b87)","70492204","\u81fa\u4e2d\u5e02\u70cf\u65e5\u5340\u4e5d\u5fb7\u91cc\u4e2d\u5c71\u8def\u4e00\u6bb52\u4e4b18\u865f12\u6a13\u4e4b1","\u52dd\u5fb7\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00313 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",525000,157500],"3MH00312":["3MH00312","M230412","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u52dd\u5fb7\u71df\u9020(\u9806\u5b87)","70492204","\u81fa\u4e2d\u5e02\u70cf\u65e5\u5340\u4e5d\u5fb7\u91cc\u4e2d\u5c71\u8def\u4e00\u6bb52\u4e4b18\u865f12\u6a13\u4e4b1","\u52dd\u5fb7\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00312 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",525000,157500],"3MH00206":["3MH00206","M230414","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u79c9\u4fca\u5efa\u8a2d-\u5927\u793e\u5340\u4e2d\u91cc\u6bb5","83153641","\u9ad8\u96c4\u5e02\u5927\u793e\u5340\u4e2d\u6b63\u8def598\u865f","\u79c9\u4fca\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",119200,"20230424",119200,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",298000,"20230926",298000,0,0,2,"-",0,"20231030",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",119200,"20231110",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00206 (2023-11-10\u8a66\u8eca\u5b8c\u7562) ; ",596000,417200],"3MH00205":["3MH00205","M230414","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u79c9\u4fca\u5efa\u8a2d-\u5927\u793e\u5340\u4e2d\u91cc\u6bb5","83153641","\u9ad8\u96c4\u5e02\u5927\u793e\u5340\u4e2d\u6b63\u8def598\u865f","\u79c9\u4fca\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",119200,"20230424",119200,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",298000,"20230808",298000,0,0,3,"-",0,"20230918",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",119200,"20231016",119200,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00205 (2023-10-16\u8a66\u8eca\u5b8c\u7562) ; ",596000,536400],"3MH00158":["3MH00158","M230415","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5ca9\u57ce\u71df\u9020(\u540d\u5bcc\u5efa\u8a2d)","54613913","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u6b66\u6f22\u8857119\u865f1\u6a13","\u5ca9\u57ce\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230419",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"20231013",180000,0,0,1,"-",0,"20231115",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00158 (2023-11-15\u5b89\u88dd\u5b8c\u7562) ; ",600000,360000],"3MH00157":["3MH00157","M230415","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5ca9\u57ce\u71df\u9020(\u540d\u5bcc\u5efa\u8a2d)","54613913","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u6b66\u6f22\u8857119\u865f1\u6a13","\u5ca9\u57ce\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230419",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00157 (2024-02-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00156":["3MH00156","M230415","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5ca9\u57ce\u71df\u9020(\u540d\u5bcc\u5efa\u8a2d)","54613913","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u6b66\u6f22\u8857119\u865f1\u6a13","\u5ca9\u57ce\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230419",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"20231013",180000,0,0,1,"-",0,"20231115",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00156 (2023-11-15\u5b89\u88dd\u5b8c\u7562) ; ",600000,360000],"3MH00493":["3MH00493","M230416","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u96f2\u555f\u5efa\u8a2d(\u5468\u7d20\u9cf3)","83275010","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u842c\u5b89\u885774\u5df717\u865f6\u6a13","\u96f2\u555f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230710",153000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00493 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00492":["3MH00492","M230416","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u96f2\u555f\u5efa\u8a2d(\u5468\u7d20\u9cf3)","83275010","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u842c\u5b89\u885774\u5df717\u865f6\u6a13","\u96f2\u555f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230710",153000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00492 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00491":["3MH00491","M230416","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u96f2\u555f\u5efa\u8a2d(\u5468\u7d20\u9cf3)","83275010","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u842c\u5b89\u885774\u5df717\u865f6\u6a13","\u96f2\u555f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230710",153000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00491 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00495":["3MH00495","M230416","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u96f2\u555f\u5efa\u8a2d(\u5468\u7d20\u9cf3)","83275010","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u842c\u5b89\u885774\u5df717\u865f6\u6a13","\u96f2\u555f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230710",153000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00495 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00494":["3MH00494","M230416","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u96f2\u555f\u5efa\u8a2d(\u5468\u7d20\u9cf3)","83275010","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u842c\u5b89\u885774\u5df717\u865f6\u6a13","\u96f2\u555f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230710",153000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00494 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MW00336":["3MW00336","M230419","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u5b9c\u8def\u767c\u5de5\u7a0b-\u6c50\u6b62\u5340\u91d1\u9f8d\u6bb5","89648683","\u53f0\u5317\u5e02\u5167\u6e56\u5340\u6771\u6e56\u8def106\u5df79\u5f049\u865f2\u6a13","\u5b9c\u8def\u767c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",390000,"20230609",390000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",130000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00336 (2024-06-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1300000,390000],"3MW00200":["3MW00200","M230420","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5bf6\u9f8d\u751f\u547d\u7d00\u5ff5\u9928","83471505","\u5c4f\u6771\u7e23\u6f6e\u5dde\u93ae\u4e09\u661f\u91cc\u4e09\u57ce\u8def197\u865f","\u5bf6\u9f8d\u958b\u767c\u4f01\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",195000,"20230426",195000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",487500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",97500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00200 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",975000,195000],"3MW00199":["3MW00199","M230420","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5bf6\u9f8d\u751f\u547d\u7d00\u5ff5\u9928","83471505","\u5c4f\u6771\u7e23\u6f6e\u5dde\u93ae\u4e09\u661f\u91cc\u4e09\u57ce\u8def197\u865f","\u5bf6\u9f8d\u958b\u767c\u4f01\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",195000,"20230426",195000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",487500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",97500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00199 (2024-01-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",975000,195000],"3MH00371":["3MH00371","M230428","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u9f8d\u8000\u6728\u696d","22993159","\u9ad8\u96c4\u5e02\u6893\u5b98\u5340\u5609\u5c55\u8def113\u4e4b1\u865f","\u9f8d\u8000\u6728\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230601",136000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"20231124",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00371 (2023-11-24\u8ca8\u62b5\u5de5\u5730) ; ",680000,136000],"3MW00155":["3MW00155","M230430","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5927\u6690\u5efa\u8a2d\u6709\u9650\u516c\u53f8","69653286","\u6843\u5712\u5e02\u6843\u5712\u5340\u540c\u5b89\u91cc\u540c\u5b89\u8857313\u865f","\u5927\u6690\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",405000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",81000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00155 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",810000,0],"3MW00154":["3MW00154","M230430","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5927\u6690\u5efa\u8a2d\u6709\u9650\u516c\u53f8","69653286","\u6843\u5712\u5e02\u6843\u5712\u5340\u540c\u5b89\u91cc\u540c\u5b89\u8857313\u865f","\u5927\u6690\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",167999.99999999997,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",419999.99999999994,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",167999.99999999997,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",83999.99999999999,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00154 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",839999.9999999999,0],"3MW00171":["3MW00171","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00171 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00170":["3MW00170","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00170 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00169":["3MW00169","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00169 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00168":["3MW00168","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00168 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00167":["3MW00167","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00167 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00166":["3MW00166","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00166 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00165":["3MW00165","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00165 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00161":["3MW00161","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00161 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00164":["3MW00164","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00164 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00160":["3MW00160","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00160 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00163":["3MW00163","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00163 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MW00159":["3MW00159","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20230420",210000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",210000,"20230811",210000,0,0,3,"-",0,"20230918",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",210000,"20231020",210000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00159 (2023-10-20\u8a66\u8eca\u5b8c\u7562) ; ",700000,630000],"3MW00162":["3MW00162","M230432","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","24877439","\u5f70\u5316\u7e23\u4e8c\u6797\u93ae\u9577\u6625\u8def570\u865f","\u5f70\u54e1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",279000,"20230420",279000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",279000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",93000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00162 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",930000,279000],"3MH00196":["3MH00196","M230438","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4f73\u610f\u5de5\u7a0b\u6709\u9650\u516c\u53f8","90290607","\u53f0\u4e2d\u5e02\u6f6d\u5b50\u5340\u4e2d\u5c71\u8def1\u6bb59\u865f3\u6a13\u4e4b3","\u4f73\u610f\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230427",180000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"20230818",180000,0,0,3,"-",0,"20231003",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",60000,"20230928",60000,0,0,2,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00196 (2023-09-28\u8a66\u8eca\u5b8c\u7562) ; ",600000,420000],"3MH00426":["3MH00426","M230467","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8c50\u5bcc\u5730\u7522-\u5927\u5bee\u96c6\u5408\u4f4f\u5b85","90457253","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u4e94\u7532\u4e09\u8def295\u5df757\u865f","\u8c50\u5bcc\u5730\u7522\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",96600,"20230629",96600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",483000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",289800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00426 (2024-04-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",966000,96600],"3MH00425":["3MH00425","M230467","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u8c50\u5bcc\u5730\u7522-\u5927\u5bee\u96c6\u5408\u4f4f\u5b85","90457253","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u4e94\u7532\u4e09\u8def295\u5df757\u865f","\u8c50\u5bcc\u5730\u7522\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",96600,"20230629",96600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",483000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",289800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00425 (2024-04-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",966000,96600],"3MH00768":["3MH00768","M230470","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u660e\u6e56\u8def\u7c21\u516c\u9928","","\u65b0\u7af9\u5e02\u660e\u6e56\u8def443\u5df729\u865f","\u660e\u6e56\u8def\u7c21\u516c\u9928","\u7c3d\u7d04",174000,"20230922",174000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00768 (2024-03-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,174000],"3MX00310":["3MX00310","M230479","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5168\u65b0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","50955753","\u6843\u5712\u5e02\u6843\u5712\u5340\u8c50\u6797\u91cc\u5efa\u570b\u8def236\u865f(1\u6a13)","\u5168\u65b0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",150000,"20230516",150000,0,0,6,"\u7c3d\u8a02\u5f8c90\u5929",225000,"20230814",225000,0,0,3,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00310 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",750000,375000],"3MX00257":["3MX00257","M230479","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5168\u65b0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","50955753","\u6843\u5712\u5e02\u6843\u5712\u5340\u8c50\u6797\u91cc\u5efa\u570b\u8def236\u865f(1\u6a13)","\u5168\u65b0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",150000,"20230516",150000,0,0,6,"\u7c3d\u8a02\u5f8c90\u5929",225000,"20230814",225000,0,0,3,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00257 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",750000,375000],"3MH00450":["3MH00450","M230483","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u8521\u80b2\u85b0-\u535a\u601d\u7279\u5e7c\u5152\u5b78\u6821","","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u4ec1\u58fd\u8def142\u865f","\u8521\u80b2\u85b0","\u7c3d\u7d04",165000,"20230703",165000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"20231116",0,0,0,0,"-",0,"20231129",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00450 (2023-12-12\u8a66\u8eca\u5b8c\u7562) ; ",550000,165000],"3MH00360":["3MH00360","M230484","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5354\u9806\u71df\u9020\u6709\u9650\u516c\u53f8","70670615","\u53f0\u4e2d\u5e02\u6f6d\u5b50\u5340\u5bb6\u798f\u91cc\u982d\u5f35\u8def\u4e00\u6bb513\u5df77\u865f1\u6a13","\u5354\u9806\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",189000,"20230614",189000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",189000,"20231110",0,0,0,0,"-",0,"20231203",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",189000,"20231219",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00360 (2023-12-19\u8a66\u8eca\u5b8c\u7562) ; ",630000,189000],"3MH00359":["3MH00359","M230485","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9806\u5b87\u571f\u5730\u5efa\u7bc9(\u5927\u96c5\u79c0\u5c71\u6bb5)","63716708","\u53f0\u4e2d\u5e02\u5927\u96c5\u5340\u6c38\u548c\u8def\u516d\u7532\u5df711\u4e4b21\u865f","\u9806\u5b87\u571f\u5730\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00359 (2023-12-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",525000,157500],"3MH00358":["3MH00358","M230485","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9806\u5b87\u571f\u5730\u5efa\u7bc9(\u5927\u96c5\u79c0\u5c71\u6bb5)","63716708","\u53f0\u4e2d\u5e02\u5927\u96c5\u5340\u6c38\u548c\u8def\u516d\u7532\u5df711\u4e4b21\u865f","\u9806\u5b87\u571f\u5730\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00358 (2023-12-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",525000,157500],"3MH00357":["3MH00357","M230485","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9806\u5b87\u571f\u5730\u5efa\u7bc9(\u5927\u96c5\u79c0\u5c71\u6bb5)","63716708","\u53f0\u4e2d\u5e02\u5927\u96c5\u5340\u6c38\u548c\u8def\u516d\u7532\u5df711\u4e4b21\u865f","\u9806\u5b87\u571f\u5730\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"20231222",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00357 (2023-12-22\u8ca8\u62b5\u5de5\u5730) ; ",525000,157500],"3MH00356":["3MH00356","M230485","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9806\u5b87\u571f\u5730\u5efa\u7bc9(\u5927\u96c5\u79c0\u5c71\u6bb5)","63716708","\u53f0\u4e2d\u5e02\u5927\u96c5\u5340\u6c38\u548c\u8def\u516d\u7532\u5df711\u4e4b21\u865f","\u9806\u5b87\u571f\u5730\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230530",157500,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"20231222",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00356 (2023-12-22\u8ca8\u62b5\u5de5\u5730) ; ",525000,157500],"3MW00215":["3MW00215","M230497","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53511678","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u5927\u6d32\u6751\u65e5\u8208\u4e8c\u8def248\u865f1\u6a13","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230901",160000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00215 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MW00214":["3MW00214","M230497","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53511678","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u5927\u6d32\u6751\u65e5\u8208\u4e8c\u8def248\u865f1\u6a13","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230901",160000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00214 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MW00213":["3MW00213","M230497","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53511678","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u5927\u6d32\u6751\u65e5\u8208\u4e8c\u8def248\u865f1\u6a13","\u5bb6\u798f\u6625\u5929\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230901",160000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00213 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MX00771":["3MX00771","M230500","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6615\u63da\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","50913332","\u6843\u5712\u5e02\u6843\u5712\u5340\u65b0\u57d4\u516d\u885777\u865f\u5341\u6a13\u4e4b5","\u6615\u63da\u5efa\u8a2d-\u89c0\u97f3\u6848","\u7c3d\u7d04",225000,"20230906",225000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00771 (2024-04-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MX00770":["3MX00770","M230500","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6615\u63da\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","50913332","\u6843\u5712\u5e02\u6843\u5712\u5340\u65b0\u57d4\u516d\u885777\u865f\u5341\u6a13\u4e4b5","\u6615\u63da\u5efa\u8a2d-\u89c0\u97f3\u6848","\u7c3d\u7d04",225000,"20230906",225000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00770 (2024-04-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MH00189":["3MH00189","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230905",260000,0,0,3,"-",0,"20231127",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231204",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00189 (2023-12-04\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00188":["3MH00188","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20231013",260000,0,0,1,"-",0,"20231230",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00188 (2023-12-30\u5b89\u88dd\u5b8c\u7562) ; ",520000,364000],"3MH00187":["3MH00187","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20231013",260000,0,0,1,"-",0,"20231030",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00187 (2023-10-30\u5b89\u88dd\u5b8c\u7562) ; ",520000,364000],"3MH00186":["3MH00186","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20231013",260000,0,0,1,"-",0,"20231230",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00186 (2023-12-30\u5b89\u88dd\u5b8c\u7562) ; ",520000,364000],"3MH00185":["3MH00185","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230927",260000,0,0,2,"-",0,"20231013",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231203",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00185 (2023-12-03\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00184":["3MH00184","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230927",260000,0,0,2,"-",0,"20231013",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231203",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00184 (2023-12-03\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00183":["3MH00183","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230927",260000,0,0,2,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231204",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00183 (2023-12-04\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00182":["3MH00182","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230906",260000,0,0,2,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231204",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00182 (2023-12-04\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00181":["3MH00181","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230906",260000,0,0,2,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231102",104000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00181 (2023-11-02\u8a66\u8eca\u5b8c\u7562) ; ",520000,468000],"3MH00180":["3MH00180","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230720",260000,0,0,4,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231101",104000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00180 (2023-11-01\u8a66\u8eca\u5b8c\u7562) ; ",520000,468000],"3MH00179":["3MH00179","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230720",260000,0,0,4,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231101",104000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00179 (2023-11-01\u8a66\u8eca\u5b8c\u7562) ; ",520000,468000],"3MH00178":["3MH00178","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230720",260000,0,0,4,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231112",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00178 (2023-11-12\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00177":["3MH00177","M230509","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4ed9\u76c8\u5efa\u8a2d","24521894","\u9ad8\u96c4\u5e02\u6960\u6893\u5340\u828e\u6797\u4e8c\u8857351\u865f","\u4ed9\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230524",104000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20230927",260000,0,0,2,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",104000,"20231217",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00177 (2023-12-17\u8a66\u8eca\u5b8c\u7562) ; ",520000,364000],"3MH00197":["3MH00197","M230512","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9673\u5b9c\u7fa3","","\u53f0\u4e2d\u5e02\u5357\u5c6f\u5340\u6771\u8208\u8def1\u6bb5481\u865f","\u9673\u5b9c\u7fa3","\u7c3d\u7d04",165000,"20230427",165000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00197 (2024-07-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00428":["3MH00428","M230522","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5bf6\u76df\u5efa\u8a2d(\u5b8f\u660e\u6bb5)","83607637","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u9cf3\u4ec1\u8def311\u4e4b1\u865f","\u5bf6\u76df\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230616",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00428 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"3MH00427":["3MH00427","M230522","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5bf6\u76df\u5efa\u8a2d(\u5b8f\u660e\u6bb5)","83607637","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u9cf3\u4ec1\u8def311\u4e4b1\u865f","\u5bf6\u76df\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",108000,"20230616",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00427 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"3MH00216":["3MH00216","M230526","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8c6b\u5448\u5efa\u8a2d(\u6850\u6c81\u4e7e\u5011\u4e8c\u6bb5\u96c6\u5408\u4f4f\u5b85)","54990079","\u5b9c\u862d\u7e23\u54e1\u5c71\u9109\u540c\u6a02\u6751\u540c\u65b0\u8def3\u5df719\u865f1\u6a13","\u8c6b\u5448\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",144000,"20230428",144000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",144000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00216 (2024-06-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",720000,144000],"3MW00210":["3MW00210","M230530","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u4fdd\u6210\u71df\u9020","16511838","\u53f0\u4e2d\u5e02\u897f\u5c6f\u5340\u897f\u5b89\u91cc\u798f\u5409\u885715\u865f1\u6a13","\u4fdd\u6210\u71df\u9020\u4e8b\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20230502",210000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",210000,"20230815",210000,0,0,3,"-",0,"20230915",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",210000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00210 (2023-11-30\u8a66\u8eca\u5b8c\u7562) ; ",700000,420000],"3MW00211":["3MW00211","M230531","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u4fdd\u6210\u71df\u9020","16511838","\u53f0\u4e2d\u5e02\u897f\u5c6f\u5340\u897f\u5b89\u91cc\u798f\u5409\u885715\u865f1\u6a13","\u4fdd\u6210\u71df\u9020\u4e8b\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",204000,"20230502",204000,0,0,7,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",204000,"20230914",204000,0,0,2,"-",0,"20231013",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",204000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00211 (2023-12-12\u8a66\u8eca\u5b8c\u7562) ; ",680000,408000],"3MH00946":["3MH00946","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00946 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00945":["3MH00945","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00945 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00944":["3MH00944","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00944 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00943":["3MH00943","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00943 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00942":["3MH00942","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00942 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00941":["3MH00941","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00941 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00949":["3MH00949","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00949 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00948":["3MH00948","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00948 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00947":["3MH00947","M230534","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54114965","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u5927\u83ef\u91cc\u4ecb\u58fd\u8def\u4e8c\u6bb5133\u5df7117\u865f1\u6a13","\u5143\u81fa\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00947 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,0],"3MH00484":["3MH00484","M230543","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u660c\u8c50\u71df\u9020(\u5927\u6eaa\u9f9c\u5c71\u5cf6\u65c5\u5ba2\u670d\u52d9\u4e2d\u5fc3)","53825690","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u7fa4\u82f1\u6751\u51ac\u5c71\u8def5\u6bb5311\u865f1\u6a13","\u660c\u8c50\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230706",140000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00484 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00242":["3MH00242","M230544","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6e38\u54f2\u8c6a(\u6797\u67cf\u69d0\u8fb2\u820d)","42946583","\u5b9c\u862d\u7e23\u7901\u6eaa\u9109\u5927\u5fe0\u6751\u5927\u5fe0\u8def111\u865f1\u6a13","\u5b9c\u6069\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230815",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00242 (2024-01-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00208":["3MH00208","M230545","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u8000\u9f0e\u5efa\u8a2d-\u5317\u5c6f","53842059","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u6a39\u738b\u8def351\u865f1\u6a13","\u8000\u9f0e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230703",165000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00208 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00207":["3MH00207","M230545","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u8000\u9f0e\u5efa\u8a2d-\u5317\u5c6f","53842059","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u6a39\u738b\u8def351\u865f1\u6a13","\u8000\u9f0e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230703",165000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00207 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MW00261":["3MW00261","M230548","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u7bc9-\u7af9\u5c71\u5927\u540c\u8857","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20230517",225000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00261 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MW00260":["3MW00260","M230548","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u7bc9-\u7af9\u5c71\u5927\u540c\u8857","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20230517",225000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00260 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MH00265":["3MH00265","M230549","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u9020-\u7af9\u5c71\u5927\u660e\u8def","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230517",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00265 (2024-04-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00264":["3MH00264","M230549","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u9020-\u7af9\u5c71\u5927\u660e\u8def","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230517",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00264 (2024-04-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00263":["3MH00263","M230549","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u9020-\u7af9\u5c71\u5927\u660e\u8def","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230517",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00263 (2024-04-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00262":["3MH00262","M230549","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76ca\u8c6a\u5efa\u9020-\u7af9\u5c71\u5927\u660e\u8def","90842762","\u5357\u6295\u7e23\u7af9\u5c71\u93ae\u4e2d\u5c71\u91cc\u5efa\u570b\u8def114\u865f1\u6a13","\u76ca\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230517",180000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00262 (2024-04-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MX00549":["3MX00549","M230556","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5408\u7fd4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90099411","\u6843\u5712\u5e02\u65b0\u5c4b\u5340\u982d\u6d32\u91cc\u65b0\u5dde\u8def51\u865f1\u6a13","\u5408\u7fd4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20230804",225000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"\u5b89\u88dd\u5b8c\u6210",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00549 (2024-04-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MH00933":["3MH00933","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00933 (2024-04-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MH00932":["3MH00932","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00932 (2024-04-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MH00931":["3MH00931","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00931 (2024-04-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MH00930":["3MH00930","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00930 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MH00929":["3MH00929","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00929 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MH00928":["3MH00928","M230562","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6631\u965e\u5efa\u8a2d(\u8986\u9f0e\u91d1\u6bb5)","90048461","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u88d5\u8aa0\u8def1113\u865f2\u6a13","\u6631\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",126000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00928 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",630000,0],"3MX00295":["3MX00295","M230563","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u8449\u5efa\u4e2d-\u5927\u91cc\u65b0\u5efa\u4f4f\u5b85","","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u74b0\u4e2d\u6771\u8def\u516d\u6bb5200\u865f","\u8449\u5efa\u4e2d","\u7c3d\u7d04",164000,"20230611",164000,0,0,5,"\u7c3d\u7d04\u5f8c90\u5929",328000,"20230909",328000,0,0,2,"\u8ca8\u62b5\u5de5\u5730",164000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00295 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",820000,492000],"3MX00204":["3MX00204","M230564","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f51\u965e\u5efa\u8a2d-\u8c50\u5e74\u6bb5\u96c6\u5408\u4f4f\u5b85","53585565","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u9cf3\u7532\u8def533\u865f1\u6a13","\u4f51\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",148000,"20230606",148000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",370000,"20231129",0,0,0,0,"-",0,"20231219",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",148000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00204 (2023-12-19\u5b89\u88dd\u5b8c\u7562) ; ",740000,148000],"3MW00453":["3MW00453","M230566","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bf6\u9f0e\u958b\u767c\u71df\u9020-\u73ed\u5c3c\u83f2\u5ee0\u623f","83476733","\u65b0\u5317\u5e02\u677f\u6a4b\u5340\u842c\u677f\u8def322\u865f","\u5bf6\u9f0e\u958b\u767c\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",205800,"20230711",205800,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",514500.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",205800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",102900,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00453 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1029000,205800],"3MX00452":["3MX00452","M230566","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bf6\u9f0e\u958b\u767c\u71df\u9020-\u73ed\u5c3c\u83f2\u5ee0\u623f","83476733","\u65b0\u5317\u5e02\u677f\u6a4b\u5340\u842c\u677f\u8def322\u865f","\u5bf6\u9f0e\u958b\u767c\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",212200,"20230711",212200,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",530500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",212200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",106100,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00452 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1061000,212200],"3MW00451":["3MW00451","M230566","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bf6\u9f0e\u958b\u767c\u71df\u9020-\u73ed\u5c3c\u83f2\u5ee0\u623f","83476733","\u65b0\u5317\u5e02\u677f\u6a4b\u5340\u842c\u677f\u8def322\u865f","\u5bf6\u9f0e\u958b\u767c\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",653000,"20230711",653000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",1632500.0000000002,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",653000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",326500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00451 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",3265000,653000],"3MH00517":["3MH00517","M230572","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d\u5b9c\u5e02\u632f\u8208\u6bb5\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160000,"20230831",160000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",400000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",160000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00517 (2024-04-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,160000],"3MH00516":["3MH00516","M230572","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d\u5b9c\u5e02\u632f\u8208\u6bb5\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230831",140000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00516 (2024-04-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00416":["3MH00416","M230573","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6881\u5b97\u8208","","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u6b63\u5357\u4e09\u8def338\u865f","\u6881\u5b97\u8208","\u7c3d\u7d04",132000,"20230620",132000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",330000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",132000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00416 (2023-12-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,132000],"3MH00557":["3MH00557","M230576","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9ad8\u7043\u571f\u6728\u5305\u5de5\u696d(\u5f35\u923f\u571f\u8fb2\u820d)","26567389","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u8c50\u5e74\u8def119\u5df72\u5f043\u865f","\u9ad8\u7043\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",104000,"20230811",104000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"20231206",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00557 (2023-12-06\u8ca8\u62b5\u5de5\u5730) ; ",520000,104000],"3MH00245":["3MH00245","M230579","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6d2a\u8f1d\u9f8d-A2","","\u53f0\u4e2d\u5e02\u6c99\u9e7f\u5340\u7af9\u6797\u91cc\u4e2d\u5c71\u8def76\u5df764\u5f0461\u865f","\u6d2a\u8f1d\u9f8d","\u7c3d\u7d04",156000,"20230511",156000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00245 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MH00246":["3MH00246","M230580","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6797\u7d21\u9365-A8","","\u53f0\u4e2d\u5e02\u68a7\u68f2\u5340\u6e2f\u57e0\u8def1\u6bb5619\u865f","\u6797\u7d21\u9365","\u7c3d\u7d04",156000,"20230511",156000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00246 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MW00580":["3MW00580","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",276000,"20230805",276000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00580 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,276000],"3MW00579":["3MW00579","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",276000,"20230805",276000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00579 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,276000],"3MH00578":["3MH00578","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230805",162000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00578 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,162000],"3MH00577":["3MH00577","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230805",162000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00577 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,162000],"3MH00576":["3MH00576","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20230805",168000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00576 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,168000],"3MH00575":["3MH00575","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20230805",168000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00575 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,168000],"3MH00574":["3MH00574","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20230805",168000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00574 (2023-11-17\u8ca8\u62b5\u5de5\u5730) ; ",560000,168000],"3MH00573":["3MH00573","M230593","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","90421278","\u82d7\u6817\u7e23\u982d\u4efd\u5e02\u4e2d\u8208\u8def518\u865f","\u8010\u798f\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20230805",168000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00573 (2023-11-17\u8ca8\u62b5\u5de5\u5730) ; ",560000,168000],"3MH00299":["3MH00299","M230595","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u738b\u96e8\u6674","","\u53f0\u5357\u5e02\u6b78\u4ec1\u5340\u5927\u9806\u8857312\u865f","\u738b\u96e8\u6674","\u7c3d\u7d04",132000,"20230526",132000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",330000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",132000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00299 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,132000],"3MH00367":["3MH00367","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00367 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00366":["3MH00366","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00366 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00365":["3MH00365","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00365 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00364":["3MH00364","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00364 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00363":["3MH00363","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00363 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00362":["3MH00362","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00362 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00361":["3MH00361","M230596","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u965e\u767c\u570b\u969b(\u80b2\u5584\u6bb5)","64943548","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u6b63\u7fa9\u4e09\u8857138\u865f","\u6ea2\u5803\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230613",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00361 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00286":["3MH00286","M230599","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u9673\u9f0e\u6587","","\u5c4f\u6771\u7e23\u6771\u6e2f\u93ae\u65b0\u5b78\u8def160\u865f","\u9673\u9f0e\u6587","\u7c3d\u7d04",189000,"20230516",189000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",252000,"20230907",252000,0,0,2,"-",0,"20231031",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",126000,"20231208",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",63000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00286 (2023-12-08\u8a66\u8eca\u5b8c\u7562) ; ",630000,441000],"3MH00840":["3MH00840","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00840 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00839":["3MH00839","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00839 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00838":["3MH00838","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00838 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00837":["3MH00837","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00837 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00836":["3MH00836","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00836 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MH00835":["3MH00835","M230600","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7384\u76df\u71df\u9020","90640816","\u96f2\u6797\u7e23\u6c34\u6797\u9109\u6c34\u6797\u8def71\u865f","\u946b\u8cb4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20230927",180000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00835 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MW00217":["3MW00217","M230602","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u660c\u696d\u91d1\u5c6c-\u6c50\u6b62\u5ee0\u623f","80739331","\u65b0\u5317\u5e02\u6c50\u6b62\u5340\u798f\u5fb7\u4e00\u8def392\u5df717\u865f","\u660c\u696d\u91d1\u5c6c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",194000,"20230529",194000,0,0,6,"\u4e8c\u6b21\u6b3e",388000,"20230630",388000,0,0,5,"\u8ca8\u62b5\u5de5\u5730",194000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",97000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",97000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00217 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",970000,582000],"3MH00259":["3MH00259","M230607","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u8c50\u7530\u6d41\u901a\u4f9b\u61c9\u93c8\u7269\u6d41\u6709\u9650\u516c\u53f8","25199746","\u6843\u5712\u5e02\u65b0\u5c4b\u5340\u6587\u5316\u8def\u4e8c\u6bb51631\u865f","\u8c50\u7530\u6d41\u901a\u4f9b\u61c9\u93c8\u7269\u6d41\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20230515",174000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",174000,"20230830",174000,0,0,3,"-",0,"20231002",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",174000,"20231018",174000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00259 (2023-10-18\u8a66\u8eca\u5b8c\u7562) ; ",580000,522000],"3MH00722":["3MH00722","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00722 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00721":["3MH00721","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00721 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00720":["3MH00720","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00720 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00719":["3MH00719","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00719 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00724":["3MH00724","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00724 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00723":["3MH00723","M230609","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u9752\u7802\u8857)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00723 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00718":["3MH00718","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00718 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00717":["3MH00717","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00717 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00716":["3MH00716","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00716 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00715":["3MH00715","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00715 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00714":["3MH00714","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00714 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00713":["3MH00713","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00713 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00712":["3MH00712","M230610","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7965\u767c\u958b\u767c(\u5fe0\u5b5d\u8def)","54549814","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5065\u5eb7\u4e00\u885716\u5df723\u865f1\u6a13","\u7965\u767c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230901",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00712 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00252":["3MH00252","M230619","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5927\u8208\u767c\u5efa\u8a2d","42981429","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u7fa4\u82f1\u6751\u6c38\u6e05\u8def1\u5df712\u5f042\u865f\u4e00\u6a13","\u5927\u8208\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",103000,"20230510",103000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",257500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",103000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00252 (2024-02-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",515000,103000],"3MH00251":["3MH00251","M230619","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5927\u8208\u767c\u5efa\u8a2d","42981429","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u7fa4\u82f1\u6751\u6c38\u6e05\u8def1\u5df712\u5f042\u865f\u4e00\u6a13","\u5927\u8208\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",103000,"20230510",103000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",257500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",103000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00251 (2024-02-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",515000,103000],"3MH00250":["3MH00250","M230619","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5927\u8208\u767c\u5efa\u8a2d","42981429","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u7fa4\u82f1\u6751\u6c38\u6e05\u8def1\u5df712\u5f042\u865f\u4e00\u6a13","\u5927\u8208\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",103000,"20230510",103000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",257500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",103000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00250 (2024-01-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",515000,103000],"3MH00247":["3MH00247","M230620","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6d2a\u8f1d\u9f8d-A1","","\u53f0\u4e2d\u5e02\u6c99\u9e7f\u5340\u7af9\u6797\u91cc\u4e2d\u5c71\u8def76\u5df764\u5f0461\u865f","\u6d2a\u8f1d\u9f8d","\u7c3d\u7d04",156000,"20230511",156000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00247 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MH00266":["3MH00266","M230621","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u91d1\u5bf6\u57ce\u7cd6\u696d-\u864e\u5c3e\u79d1\u864e\u8def","28735622","\u96f2\u6797\u7e23\u8912\u5fe0\u9109\u99ac\u9cf4\u6751\u93ae\u5b89\u8def29-1\u865f","\u91d1\u5bf6\u57ce\u7cd6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230517",165000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"20231221",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00266 (2023-12-21\u8ca8\u62b5\u5de5\u5730) ; ",550000,165000],"3MH00283":["3MH00283","M230628","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u674e\u60e0\u5ead","","\u5609\u7fa9\u7e23\u6c34\u4e0a\u9109\u5fe0\u548c\u6751\u6ab3\u6994\u6a39\u89d21\u4e4b23\u865f","\u674e\u60e0\u5ead","\u7c3d\u7d04",108000,"20230516",108000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"20231012",270000,0,0,1,"-",0,"20231103",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",108000,"20231203",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"20231211",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00283 (2023-12-11\u5df2\u79fb\u4ea4) ; ",540000,378000],"3MH00368":["3MH00368","M230630","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u90ed\u5efa\u5fd7","","\u5609\u7fa9\u5e02\u6771\u5340\u96c5\u7af9\u8def16\u865f","\u90ed\u5efa\u5fd7","\u7c3d\u7d04",132000,"20230612",132000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",330000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",132000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00368 (2024-01-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,132000],"3MW00248":["3MW00248","M230631","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5289\u5efa\u5229","","\u5f70\u5316\u7e23\u54e1\u6797\u5e02\u54e1\u6c34\u8def2\u6bb5421\u5df759\u865f","\u5289\u5efa\u5229","\u7c3d\u7d04",148000,"20230509",148000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",296000,"20230830",296000,0,0,3,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",222000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00248 (2023-08-30\u8ca8\u62b5\u5de5\u5730) ; ",740000,444000],"3MH00498":["3MH00498","M230634","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6d0b\u57fa\u71df\u9020(\u555f\u660e\u8def\u9ec3\u5b85)","84996156","\u5609\u7fa9\u5e02\u897f\u5340\u798f\u5b89\u91cc\u6cf0\u745e\u4e8c\u885768\u865f","\u6d0b\u57fa\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230712",140000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00498 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MW00267":["3MW00267","M230635","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(A\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",255000,"20230922",255000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",255000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",255000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00267 (2024-02-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",850000,255000],"3MW00276":["3MW00276","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",294000,"20230517",294000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00276 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,294000],"3MW00277":["3MW00277","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",300000,"20230517",300000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00277 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,300000],"3MW00278":["3MW00278","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",300000,"20230517",300000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00278 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,300000],"3MW00279":["3MW00279","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",300000,"20230517",300000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00279 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1000000,300000],"3MW00274":["3MW00274","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",294000,"20230517",294000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00274 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,294000],"3MW00275":["3MW00275","M230636","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u79d1\u90a8\u4e00\u8def\u6848","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",294000,"20230517",294000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00275 (2024-06-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,294000],"3MH00280":["3MH00280","M230637","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9ad8\u5357","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",195000,"20230517",195000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00280 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",650000,195000],"3MH00281":["3MH00281","M230637","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9ad8\u5357","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",201000,"20230517",201000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",201000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",201000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00281 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",670000,201000],"3MH00411":["3MH00411","M230639","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u6d2a\u5a49\u6979(\u6797\u4fca\u8f1d)","","\u5f70\u5316\u7e23\u79c0\u6c34\u9109\u66fe\u539d\u6751\u66fe\u539d\u5df7128\u865f","\u6797\u4fca\u8f1d","\u7c3d\u7d04",186000,"20230608",186000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",186000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",186000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",62000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00411 (2024-02-21\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",620000,186000],"3MH00244":["3MH00244","M230641","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u79c9\u79be\u71df\u9020(\u8a79\u671d\u63da)","54041078","\u53f0\u5317\u5e02\u4e2d\u5c71\u5340\u9577\u5b89\u6771\u8def\u4e00\u6bb516\u865f2\u6a13\u4e4b4","\u79c9\u79be\u5efa\u8a2d\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",256000,"20230510",256000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",128000,"20231013",128000,0,0,1,"-",0,"20231121",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",192000,"20231211",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",64000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00244 (2023-12-11\u8a66\u8eca\u5b8c\u7562) ; ",640000,384000],"3MW00243":["3MW00243","M230646","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7acb\u5091\u71df\u9020","90398924","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u592a\u548c\u4e00\u8857123\u865f10\u6a13\u4e4b2","\u7acb\u5091\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",342000,"20230510",342000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",342000,"20230816",342000,0,0,3,"-",0,"20231014",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",342000,"20231025",342000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00243 (2023-10-25\u8a66\u8eca\u5b8c\u7562) ; ",1140000,1026000],"3MX00405":["3MX00405","M230656","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u5c55\u958b\u767c-\u89c0\u97f3\u8349\u798f\u6bb5395\u5730\u865f","16265147","\u6843\u5712\u5e02\u6843\u5712\u5340\u88d5\u548c\u885730\u5df723\u865f(2\u6a13)","\u5143\u5c55\u958b\u767c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",192000,"20230629",192000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",480000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",192000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00405 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",960000,192000],"3MX00404":["3MX00404","M230656","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u5c55\u958b\u767c-\u89c0\u97f3\u8349\u798f\u6bb5395\u5730\u865f","16265147","\u6843\u5712\u5e02\u6843\u5712\u5340\u88d5\u548c\u885730\u5df723\u865f(2\u6a13)","\u5143\u5c55\u958b\u767c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",192000,"20230629",192000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",480000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",192000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00404 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",960000,192000],"3MW00249":["3MW00249","M230662","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5289\u5efa\u5fe0","","\u5f70\u5316\u7e23\u54e1\u6797\u5e02\u54e1\u6c34\u8def2\u6bb5421\u5df759\u865f2\u6a13","\u5289\u5efa\u5fe0","\u7c3d\u7d04",148000,"20230509",148000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",296000,"20230830",296000,0,0,3,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",222000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00249 (2023-08-30\u8ca8\u62b5\u5de5\u5730) ; ",740000,444000],"3MW00414":["3MW00414","M230678","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u81e8\u749e\u5efa\u7bc9-\u6eaa\u6e56\u93ae\u798f\u5b89\u6bb5","42562381","\u5f70\u5316\u7e23\u57d4\u9e7d\u9109\u4e09\u7701\u6751\u597d\u91d1\u8def1-60\u865f2\u6a13","\u81e8\u749e\u5efa\u7bc9\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",276000,"20230609",276000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00414 (2024-02-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,276000],"3MW00311":["3MW00311","M230679","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5289\u7e55\u7db8","","\u53f0\u4e2d\u5e02\u5927\u7532\u5340\u6771\u897f\u516b\u8def\u4e00\u6bb5138\u865f","\u5289\u7e55\u7db8","\u7c3d\u7d04",225000,"20230529",225000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00311 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",810000,225000],"3MH00355":["3MH00355","M230687","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6c38\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","54981590","\u5f70\u5316\u7e23\u54e1\u6797\u5e02\u5927\u9952\u91cc\u67f3\u6a4b\u8def\u4e00\u6bb5655\u865f2\u6a13","\u6c38\u8c6a\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",157500,"20230607",157500,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",157500,"20231017",157500,0,0,1,"-",0,"20231106",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"20231208",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00355 (2023-12-08\u8a66\u8eca\u5b8c\u7562) ; ",525000,315000],"3MX00548":["3MX00548","M230701","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5bf6\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54525968","\u6843\u5712\u5e02\u6843\u5712\u5340\u4e2d\u5c71\u91cc\u5b8f\u660c\u5341\u4e8c\u8857532-1\u865f6\u865f","\u5bf6\u76c8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",232500,"20230823",232500,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",310000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",155000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",77500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00548 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",775000,232500],"3MH00873":["3MH00873","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00873 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00872":["3MH00872","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00872 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00871":["3MH00871","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00871 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00870":["3MH00870","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00870 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00869":["3MH00869","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00869 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00868":["3MH00868","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00868 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00867":["3MH00867","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00867 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00866":["3MH00866","M23070147","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","82932641","\u65b0\u7af9\u5e02\u5317\u5340\u91d1\u83ef\u91cc\u7530\u7f8e\u4e09\u885758\u5df713\u865f\u4e00\u6a13","\u5927\u6676\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",28750,"20231019",28750,0,0,1,"\u5efa\u7167\u6838\u767c\u6642",86250,"20231120",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",115000,"-",0,0,0,0,"\u5f97\u5408\u683c\u51fd\u5f8c6\u500b\u6708",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00866 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",575000,28750],"3MH00864":["3MH00864","M23070155","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u773e\u4fe1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","12632430","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u838a\u656c\u91cc\u6771\u8c50\u8def27\u865f1\u6a13","\u773e\u4fe1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20231013",180000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00864 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,180000],"3MX00488":["3MX00488","M230703","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5bf6\u53f0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","80594237","\u6843\u5712\u5e02\u9f8d\u6f6d\u5340\u9ad8\u539f\u91cc\u6e34\u671b\u4e8c\u8def98\u865f3\u6a13","\u5bf6\u53f0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",377400,"20230703",377400,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",503200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",251600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",125800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00488 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1258000,377400],"3MX00487":["3MX00487","M230703","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5bf6\u53f0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","80594237","\u6843\u5712\u5e02\u9f8d\u6f6d\u5340\u9ad8\u539f\u91cc\u6e34\u671b\u4e8c\u8def98\u865f3\u6a13","\u5bf6\u53f0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",377400,"20230703",377400,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",503200,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",251600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",125800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00487 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1258000,377400],"3MW00506":["3MW00506","M230704","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u7acb\u90fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","24618898","\u6843\u5712\u5e02\u9f9c\u5c71\u5340\u5357\u4e0a\u91cc\u6c11\u751f\u5317\u8def\u4e00\u6bb5259\u4e4b1\u865f","\u5927\u7acb\u90fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",270000,"20230721",270000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00506 (2024-12-04\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,270000],"3MW00505":["3MW00505","M230704","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5927\u7acb\u90fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","24618898","\u6843\u5712\u5e02\u9f9c\u5c71\u5340\u5357\u4e0a\u91cc\u6c11\u751f\u5317\u8def\u4e00\u6bb5259\u4e4b1\u865f","\u5927\u7acb\u90fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",270000,"20230721",270000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00505 (2024-12-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,270000],"3MH00572":["3MH00572","M230706","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u91d1\u4e2d\u806f\u6709\u9650\u516c\u53f8-\u5927\u5bee\u6703\u7d50\u5357\u6bb5\u5ee0\u8fa6","89742786","\u9ad8\u96c4\u5e02\u5927\u5bee\u5340\u5149\u660e\u8def2\u6bb5780\u4e4b9\u865f","\u91d1\u4e2d\u806f\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20230807",136000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00572 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,136000],"3MH00445":["3MH00445","M230713","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6cf0\u52db\u5efa\u8a2d(\u7f85\u6771\u93ae\u7f85\u838a\u6bb580\u5730\u865f)","53286172","\u5b9c\u862d\u7e23\u4e09\u661f\u9109\u4e09\u661f\u8def7\u6bb5318\u865f","\u6cf0\u52db\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",148000,"20230609",148000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",370000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",148000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00445 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",740000,148000],"3MH00293":["3MH00293","M230714","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u8a31\u7f8e\u83ca","","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u5c71\u4f73\u4e8c\u8def385\u865f","\u8a31\u7f8e\u83ca","\u7c3d\u7d04",168000,"20231024",168000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",224000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00293 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,168000],"3MH00417":["3MH00417","M230721","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u9678\u798f\u71df\u9020(\u5fa9\u8208\u8def)","86219744","\u5609\u7fa9\u5e02\u8eca\u5e97\u91cc\u5357\u4eac\u8def433\u865f1\u6a13","\u9678\u798f\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20230620",114000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231108",0,0,0,0,"-",0,"20231124",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00417 (2023-11-24\u5b89\u88dd\u5b8c\u7562) ; ",570000,114000],"3MX00533":["3MX00533","M230725","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5bec\u95ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","83690213","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u81ea\u5f37\u6771\u8def115\u865f","\u5bec\u95ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00533 (2024-09-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MX00537":["3MX00537","M230728","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u4f55\u653f\u63da","\u91d1\u6709\u5eb7\u5efa\u8a2d\/\u76e7\u677e\u6839\u7b493\u4eba\u96c6\u5408\u4f4f\u5b85","90216229","\u65b0\u5317\u5e02\u6de1\u6c34\u5340\u65b0\u6c11\u8857180\u5df77\u4e4b3\u865f4\u6a13","\u91d1\u6709\u5eb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",176000,"20230825",176000,0,0,3,"\u51fa\u8ca8\u524d30 \u5929",264000,"20240131",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",176000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",176000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca\u5f8c180\u5929",88000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00537 (2024-02-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",880000,176000],"3MW00509":["3MW00509","M230734","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76db\u7acb\u4ea4\u901a-\u8ca8\u904b\u96c6\u8ca8\u7ad9\u65b0\u5efa\u5de5\u7a0b","45196893","\u53f0\u4e2d\u5e02\u897f\u5c6f\u5340\u6c38\u798f\u8def35\u865f","\u76db\u7acb\u4ea4\u901a\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20230801",225000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00509 (2024-01-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MH00297":["3MH00297","M230737","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u842c\u5927\u5efa\u8a2d\u6709\u9650\u516c\u53f8-\u53f0\u4e2d\u6c99\u9e7f\u5340","91048361","\u53f0\u4e2d\u5e02\u6c99\u9e7f\u5340\u516d\u8def\u91cc\u516d\u8def\u5341\u4e94\u885743\u865f1\u6a13","\u842c\u5927\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230706",162000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"20230810",162000,0,0,3,"-",0,"20230831",0,0,0,3,"\u8a66\u8eca\u5b8c\u5de5",162000,"20230908",162000,0,0,2,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00297 (2023-09-08\u8a66\u8eca\u5b8c\u7562) ; ",540000,486000],"3MH00298":["3MH00298","M230738","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6c5f\u6625\u6c60","","\u5f70\u5316\u7e23\u54e1\u6797\u5e02\u54e1\u6797\u5927\u90533\u6bb5500\u865f","\u6c5f\u6625\u6c60","\u7c3d\u7d04",168000,"20230522",168000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"20230901",168000,0,0,3,"-",0,"20231025",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",168000,"20231102",168000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00298 (2023-11-02\u8a66\u8eca\u5b8c\u7562) ; ",560000,504000],"3MH00296":["3MH00296","M230743","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u62fe\u76ca\u71df\u9020-\u6e05\u6c34\u5e7c\u5152\u5712","42759672","\u5357\u6295\u7e23\u8349\u5c6f\u93ae\u65b0\u539d\u91cc\u5efa\u8208\u4e00\u885773\u865f1\u6a13","\u62fe\u76ca\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",316000,"20230523",316000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",158000,"20230915",158000,0,0,2,"-",0,"20231031",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",237000,"20231116",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",79000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00296 (2023-11-16\u8a66\u8eca\u5b8c\u7562) ; ",790000,474000],"3MH00508":["3MH00508","M230745",null,null,null,"\u9673\u52a0\u6a3a","","\u96f2\u6797\u7e23\u5317\u6e2f\u93ae\u6587\u5316\u8def116\u865f","\u9673\u52a0\u6a3a","\u7c3d\u7d04",165000,"20230718",165000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"20231219",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00508 (2023-12-19\u8ca8\u62b5\u5de5\u5730) ; ",550000,165000],"3MX00552":["3MX00552","M230746","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5e78\u7fa9\u57ce\u5efa\u8a2d(\u6797\u5712\u6848)","90618130","\u9ad8\u96c4\u5e02\u9ce5\u677e\u5340\u6587\u524d\u8def103\u865f","\u5e78\u7fa9\u57ce\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",154000,"20230731",154000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",385000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",154000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",77000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00552 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",770000,154000],"3MX00551":["3MX00551","M230746","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5e78\u7fa9\u57ce\u5efa\u8a2d(\u6797\u5712\u6848)","90618130","\u9ad8\u96c4\u5e02\u9ce5\u677e\u5340\u6587\u524d\u8def103\u865f","\u5e78\u7fa9\u57ce\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",166000,"20230731",166000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",415000.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",166000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",83000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00551 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",830000,166000],"3MH00496":["3MH00496","M230759","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u901a\u6b0a\u5efa\u8a2d-\u738b\u6c5f\u6d77","","\u5357\u6295\u5e02\u5f70\u5357\u8def875\u865f","\u738b\u6c5f\u6d77","\u7c3d\u7d04",156000,"20230706",156000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00496 (2024-10-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MH00497":["3MH00497","M230760","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u901a\u6b0a\u5efa\u8a2d-\u5357\u6295\u5e02","86344588","\u5357\u6295\u5e02\u5167\u8208\u91cc\u5149\u660e\u5357\u8def41\u865f","\u901a\u6b0a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",204000,"20230706",204000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00497 (2024-10-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,204000],"3MH00403":["3MH00403","M230765","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u5b8f\u665f\u71df\u9020-\u6a39\u6797\u6a39\u5fb7\u6bb5","84856660","\u65b0\u5317\u5e02\u65b0\u838a\u5340\u4e2d\u6b63\u8def369\u865f6\u6a13","\u5b8f\u665f\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",164000,"20230630",164000,0,0,5,"\u7c3d\u7d04\u5f8c60\u5929",328000,"20230829",328000,0,0,3,"\u8ca8\u62b5\u5de5\u5730",164000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00403 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",820000,492000],"3MP00370":["3MP00370","M230770","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u65b0\u4e2d\u5927\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","90433838","\u53f0\u4e2d\u5e02\u5927\u7532\u5340\u8208\u5b89\u8def138-172\u865f","\u65b0\u4e2d\u5927\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20230605",140000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00370 (2023-12-01\u8ca8\u62b5\u5de5\u5730) ; ",700000,140000],"3MH00424":["3MH00424","M230771","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f73\u7687\u5efa\u8a2d-\u9ebb\u8c465\u6236\u4f4f\u5b85","27616140","\u53f0\u5357\u5e02\u5357\u5340\u5065\u5eb7\u8def\u4e8c\u6bb5339\u865f1\u6a13","\u4f73\u7687\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107600,"20230616",107600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",269000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00424 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",538000,107600],"3MH00423":["3MH00423","M230771","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f73\u7687\u5efa\u8a2d-\u9ebb\u8c465\u6236\u4f4f\u5b85","27616140","\u53f0\u5357\u5e02\u5357\u5340\u5065\u5eb7\u8def\u4e8c\u6bb5339\u865f1\u6a13","\u4f73\u7687\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107600,"20230616",107600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",269000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00423 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",538000,107600],"3MH00422":["3MH00422","M230771","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f73\u7687\u5efa\u8a2d-\u9ebb\u8c465\u6236\u4f4f\u5b85","27616140","\u53f0\u5357\u5e02\u5357\u5340\u5065\u5eb7\u8def\u4e8c\u6bb5339\u865f1\u6a13","\u4f73\u7687\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107600,"20230616",107600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",269000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00422 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",538000,107600],"3MH00421":["3MH00421","M230771","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f73\u7687\u5efa\u8a2d-\u9ebb\u8c465\u6236\u4f4f\u5b85","27616140","\u53f0\u5357\u5e02\u5357\u5340\u5065\u5eb7\u8def\u4e8c\u6bb5339\u865f1\u6a13","\u4f73\u7687\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107600,"20230616",107600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",269000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00421 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",538000,107600],"3MH00420":["3MH00420","M230771","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u4f73\u7687\u5efa\u8a2d-\u9ebb\u8c465\u6236\u4f4f\u5b85","27616140","\u53f0\u5357\u5e02\u5357\u5340\u5065\u5eb7\u8def\u4e8c\u6bb5339\u865f1\u6a13","\u4f73\u7687\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107600,"20230616",107600,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",269000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00420 (2024-04-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",538000,107600],"3MH00378":["3MH00378","M230774","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8d99\u5fd7\u661f\u7901\u6eaa\u6574\u5efa\u4f4f\u5b85","","\u5b9c\u862d\u7e23\u54e1\u5c71\u9109\u5927\u5b89\u8def168-20\u865f","\u8d99\u5fd7\u661f","\u7c3d\u7d04",108000,"20230609",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00378 (2024-01-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"3MH00507":["3MH00507","M230781","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u9752\u57d4\u5433\u516c\u9928","16496793","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u677e\u7af9\u8def\u4e8c\u6bb5346\u5df718\u865f2\u6a13\u4e4b1","\u8aa0\u9091\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",246000,"20230721",246000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",328000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",164000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00507 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",820000,246000],"3MH00407":["3MH00407","M230786","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u9752\u57d4\u9673\u5a01\u5b87\u4f4f\u5b85\u6848","80116480","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u4e2d\u6b63\u8def269\u865f","\u6668\u744b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",184500,"20230619",184500,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",246000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",123000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",61500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00407 (2024-05-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",615000,184500],"3MH00410":["3MH00410","M230790","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u73ed\u7c73\u7f85\u5e7c\u5152\u5712","","\u96f2\u6797\u7e23\u5143\u9577\u9109\u5143\u897f\u8def74\u5df71\u865f","\u5f35\u535a\u6587","\u7c3d\u7d04",0,"20230620",0,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00410 (2024-01-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MW00350":["3MW00350","M230791","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5433\u660e\u9d3b","","\u5f70\u5316\u7e23\u4f38\u6e2f\u9109\u8208\u5de5\u8def59\u865f","\u5433\u660e\u9d3b","\u7c3d\u7d04",288000,"20230601",288000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",288000,"20230906",288000,0,0,2,"-",0,"20230930",0,0,0,2,"\u8a66\u8eca\u5b8c\u5de5",288000,"20231110",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00350 (2023-11-10\u8a66\u8eca\u5b8c\u7562) ; ",960000,576000],"3MW00500":["3MW00500","M230795","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5927\u65b9\u7121\u9685(\u9802\u65b0\u6bb5)","59276876","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u7ba1\u4ef2\u5357\u8def376\u865f5\u6a13","\u5927\u65b9\u7121\u9685\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230706",0,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00500 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MW00863":["3MW00863","M23080003","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u674e\u66dc\u5e84","","\u6843\u5712\u5e02\u5927\u5712\u5340\u65b0\u5712\u885741\u5df730\u865f2\u6a13","\u674e\u66dc\u5e84","\u7c3d\u7d04",309000,"20231012",309000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",412000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",206000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",103000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00863 (2024-05-20T14:26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1030000,309000],"3MH00971":["3MH00971","M23080004","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u738b\u5e2b\u51f1","","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u9678\u5149\u516d\u885715\u865f3\u6a13","\u738b\u5e2b\u51f1","\u7c3d\u7d04",180000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00971 (2024-06-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,0],"3MH00967":["3MH00967","M23080027","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u66fe\u570b\u7965","","\u65b0\u7af9\u5e02\u6771\u5340\u81ea\u7531\u8def109\u865f5\u6a13\u4e4b5","\u66fe\u570b\u7965","\u7c3d\u7d04",171000,"20231129",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",228000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00967 (2024-03-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,0],"3MW00960":["3MW00960","M23080088","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u4e59\u7537\u71df\u9020\u5ee0\u623f","84716057","\u9ad8\u96c4\u5e02\u4ec1\u6b66\u5340\u4ec1\u6148\u4e94\u885732\u865f1\u6a13","\u4e59\u7537\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00960 (2024-02-21\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00854":["3MH00854","M23080146","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u9ec3\u5353\u539f","","\u65b0\u7af9\u5e02\u6771\u5340\u5149\u5fa9\u8def\u4e8c\u6bb5531\u865f","\u9ec3\u5353\u539f","\u5408\u7d04\u7c3d\u8a02",144000,"20231020",144000,0,0,1,"\u7c3d\u8a02\u5f8c60\u5929",288000,"20231219",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",144000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00854 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",720000,144000],"3MH00879":["3MH00879","M23080163","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5409\u65fa\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","16495324","\u81fa\u5357\u5e02\u9ebb\u8c46\u5340\u6c11\u751f\u8def25\u5df79\u865f1\u6a13","\u5409\u65fa\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",192000,"20231025",192000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",205000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",192000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",64000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00879 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",653000,192000],"3MX00862":["3MX00862","M23080173","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5bcc\u660c\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","83574523","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u6a39\u6797\u91cc\u5efa\u570b\u8def233\u865f(3\u6a13)","\u5bcc\u660c\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",222000,"20231012",222000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",296000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",148000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00862 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",740000,222000],"3MX00861":["3MX00861","M23080173","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5bcc\u660c\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","83574523","\u6843\u5712\u5e02\u89c0\u97f3\u5340\u6a39\u6797\u91cc\u5efa\u570b\u8def233\u865f(3\u6a13)","\u5bcc\u660c\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",222000,"20231012",222000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",296000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",148000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",74000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00861 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",740000,222000],"3MW01028":["3MW01028","M23080175","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u5317\u6e2f\u93ae\u5e9c\u756a\u7b2c\u4e09\u7d0d\u9aa8\u5854","12607609","\u81fa\u5357\u5e02\u9ebb\u8c46\u5340\u8208\u570b\u8def38\u5df741\u865f1\u6a13","\u5f18\u5dde\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",194000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",485000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",194000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",97000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW01028 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",970000,0],"3MH01023":["3MH01023","M23080182","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5442\u5049\u8aa0","","\u6843\u5712\u5e02\u4e2d\u91cc\u5340\u4e2d\u660e\u8def49\u865f","\u5442\u5049\u8aa0","\u7c3d\u7d04",210000,"20231206",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01023 (2025-12-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MW00805":["3MW00805","M23080187","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u9d3b\u8000\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","27775316","\u65b0\u5317\u52e2\u65b0\u838a\u5340\u74ca\u6797\u5357\u8def179-1\u865f","\u9d3b\u8000\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",303000,"20231006",303000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",404000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",202000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",101000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00805 (2024-01-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1010000,303000],"3MX00406":["3MX00406","M230802","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5143\u5c55\u958b\u767c-\u89c0\u97f3\u8349\u798f\u6bb5395-1\u5730\u865f","16265147","\u6843\u5712\u5e02\u6843\u5712\u5340\u88d5\u548c\u885730\u5df723\u865f(2\u6a13)","\u5143\u5c55\u958b\u767c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",172000,"20230711",172000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",430000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",172000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",86000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00406 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",860000,172000],"3MH00789":["3MH00789","M230809","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u7fc1\u7d20\u8c9e","","\u65b0\u7af9\u5e02\u7af9\u5149\u8def78\u5df713\u5f042\u865f","\u7fc1\u7d20\u8c9e","\u7c3d\u7d04",207000,"20231004",207000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",138000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",69000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00789 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",690000,207000],"3MH00474":["3MH00474","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00474 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00473":["3MH00473","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00473 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00472":["3MH00472","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00472 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00471":["3MH00471","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00471 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00470":["3MH00470","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00470 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00469":["3MH00469","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00469 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00468":["3MH00468","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00468 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00467":["3MH00467","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00467 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00466":["3MH00466","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00466 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00465":["3MH00465","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00465 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00464":["3MH00464","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00464 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00463":["3MH00463","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00463 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00462":["3MH00462","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00462 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00461":["3MH00461","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00461 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00460":["3MH00460","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00460 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00459":["3MH00459","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00459 (2024-04-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00458":["3MH00458","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00458 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00457":["3MH00457","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00457 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00456":["3MH00456","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00456 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00455":["3MH00455","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00455 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00454":["3MH00454","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00454 (2024-03-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00481":["3MH00481","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00481 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00480":["3MH00480","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00480 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00479":["3MH00479","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00479 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00478":["3MH00478","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00478 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00477":["3MH00477","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00477 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00476":["3MH00476","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00476 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00475":["3MH00475","M230810","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5de6\u6771\u6bb5\u900f\u5929\u65b0\u5efa\u5de5\u7a0b(\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8)","80371658","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u660e\u8aa0\u4e09\u8def679\u865f18\u6a13","\u9472\u63da\u570b\u969b\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230626",106000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00475 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00348":["3MH00348","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00348 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00347":["3MH00347","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00347 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00346":["3MH00346","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00346 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00345":["3MH00345","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00345 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00344":["3MH00344","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00344 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00343":["3MH00343","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00343 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00342":["3MH00342","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00342 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00341":["3MH00341","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00341 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00340":["3MH00340","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00340 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00339":["3MH00339","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00339 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00338":["3MH00338","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00338 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MH00337":["3MH00337","M230821","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8431\u904b\u6709\u9650\u516c\u53f8","42788613","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def\u4e00\u6bb5145\u865f9\u6a13\u4e4b1","\u8431\u904b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",100000,"20230921",100000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",250000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",100000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",50000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00337 (2024-06-28\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",500000,100000],"3MX00136":["3MX00136","M230824","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u570b\u806f\u571f\u5730(\u65d7\u6d25\u68e7)","53842656","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u54c8\u723e\u6ff1\u885785\u865f","\u570b\u806f\u571f\u5730\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",202000.00000000003,"20230711",202000.00000000003,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",505000.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",202000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",101000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00136 (2024-06-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1010000.0000000001,202000.00000000003],"3MX00135":["3MX00135","M230824","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u570b\u806f\u571f\u5730(\u65d7\u6d25\u68e7)","53842656","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u54c8\u723e\u6ff1\u885785\u865f","\u570b\u806f\u571f\u5730\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",188000,"20230711",188000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",470000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",188000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",94000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00135 (2024-06-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",940000,188000],"3MX00138":["3MX00138","M230825","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u570b\u806f\u5730\u7522(\u53cc\u6377\u68e7)","53247586","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u54c8\u723e\u6ff1\u885785\u865f","\u570b\u806f\u5730\u7522\u4e8b\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",230000,"20230711",230000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",575000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",230000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",115000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00138 (2024-09-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1150000,230000],"3MX00137":["3MX00137","M230825","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u570b\u806f\u5730\u7522(\u53cc\u6377\u68e7)","53247586","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u54c8\u723e\u6ff1\u885785\u865f","\u570b\u806f\u5730\u7522\u4e8b\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20230711",210000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",525000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",105000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00137 (2024-09-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1050000,210000],"3MH00379":["3MH00379","M230837","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u65e5\u660c\u71df\u9020-\u6046\u6cf0\u696d\u958b\u767c\u4e09\u661f\u65b0\u842c\u8cb4\u6bb5","13056250","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u601d\u6e90\u91cc\u6c11\u65cf\u8def525\u5df725\u865f1\u6a13","\u65e5\u660c\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230602",106000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00379 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00591":["3MH00591","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230823",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",212000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00591 (2024-01-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00590":["3MH00590","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00590 (2024-03-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00589":["3MH00589","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00589 (2024-03-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00588":["3MH00588","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00588 (2024-03-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00587":["3MH00587","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00587 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00586":["3MH00586","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00586 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00585":["3MH00585","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00585 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00584":["3MH00584","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00584 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00583":["3MH00583","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00583 (2024-01-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00582":["3MH00582","M230838","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","54691810","\u65b0\u5317\u5e02\u6c38\u548c\u5340\u4fdd\u751f\u8def22\u5df719\u5f0421\u865f16\u6a13","\u798f\u8208\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20230823",113000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",169500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00582 (2024-01-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",565000,113000],"3MH00592":["3MH00592","M230839","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8(\u89c0\u97f3\u5b89\u548c\u8857)","69619990","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u60e0\u5dde\u885746\u865f2\u6a13","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230823",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",212000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00592 (2024-01-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MW00616":["3MW00616","M230842","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5149\u6b23\u9858\u666f\u5efa\u8a2d-\u4e2d\u58e2\u6587\u5316\u8def\u6848","91119371","\u6843\u5712\u5e02\u6843\u5712\u5340\u8c50\u6797\u91cc\u4e09\u6c11\u8def\u4e09\u6bb5625\u865f1\u6a13","\u5149\u6b23\u9858\u666f\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",339000,"20230817",339000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",452000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",226000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",113000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00616 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1130000,339000],"3MH00547":["3MH00547","M230847","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u5f35\u6b63\u5fe0(\u5927\u5712\u5340\u6a6b\u5c71\u6bb5)","","\u6843\u5712\u5e02\u5927\u5712\u5340\u4e09\u77f3\u91cc6\u9130\u4e09\u584a\u77f351-3\u865f","\u5f35\u6b63\u5fe0","\u7c3d\u7d04",171000,"20230801",171000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",228000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00547 (2024-04-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,171000],"3MH00351":["3MH00351","M230848","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5c71\u738b\u71df\u9020","83753223","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u8ecd\u798f\u5341\u516d\u8def342\u865f14\u6a13","\u5c71\u738b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",212000,"20230607",212000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",106000,"20230817",106000,0,0,3,"-",0,"20231019",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",159000,"20231027",159000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00351 (2023-10-27\u8a66\u8eca\u5b8c\u7562) ; ",530000,477000],"3MW00558":["3MW00558","M230851","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u6f84\u9cf4\u5efa\u8a2d-\u9ad8\u660e\u6bb5\u96c6\u5408\u5f0f\u4f4f\u5b85\u6848","90213567","\u6843\u5712\u5e02\u9f8d\u6f6d\u5340\u5149\u660e\u8def41\u5df712\u865f","\u6f84\u9cf4\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",360000,"20230810",360000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",480000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00558 (2024-01-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1200000,360000],"3MH00349":["3MH00349","M230860","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u7f8e\u9e97\u5c71\u6797-\u8521\u516c\u9928","","\u65b0\u5317\u5e02\u6c50\u6b62\u5340\u5fe0\u5b5d\u6771\u8def512\u865f","\u8521\u66f8\u9298","\u7c3d\u7d04",0,"20230705",0,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"20231211",0,0,0,0,"-",0,"20231219",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00349 (2023-12-19\u5b89\u88dd\u5b8c\u7562) ; ",0,0],"3MH00429":["3MH00429","M230861","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u540d\u5b8f\u982d\u57ce\u62d4\u96c5\u6bb5\u900f\u5929\u4f4f\u5b85","54961074","\u5b9c\u862d\u7e23\u982d\u57ce\u93ae\u5409\u7965\u8def232\u865f","\u5927\u9716\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",124000,"20230901",124000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",310000,"20231215",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",124000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",62000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00429 (2023-12-15\u8ca8\u62b5\u5de5\u5730) ; ",620000,124000],"3MW00415":["3MW00415","M230881","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u80e1\u65b9\u7fd4(\u6eab\u7389\u5b0c)","","\u82d7\u6817\u7e23\u7af9\u5357\u93ae\u4fdd\u8208\u8857122\u5df71\u5f045\u865f","\u80e1\u65b9\u7fd4","\u7c3d\u7d04",258000,"20230628",258000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",308000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",258000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",86000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00415 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",910000,258000],"3MH00392":["3MH00392","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00392 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00391":["3MH00391","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00391 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00390":["3MH00390","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00390 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00389":["3MH00389","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00389 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00388":["3MH00388","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00388 (2024-06-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00387":["3MH00387","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00387 (2024-05-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00386":["3MH00386","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00386 (2024-05-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00385":["3MH00385","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00385 (2024-05-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00384":["3MH00384","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00384 (2024-05-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00383":["3MH00383","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00383 (2024-05-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00382":["3MH00382","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00382 (2024-05-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00381":["3MH00381","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00381 (2024-05-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00380":["3MH00380","M230887","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5149\u96b1\u6709\u9650\u516c\u53f8(\u4e94\u7d50\u4e09\u5409\u6bb5\u900f\u592913\u53f0)","90351619","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u5149\u69ae\u5317\u8def199\u865f","\u5149\u96b1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00380 (2024-05-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00393":["3MH00393","M230890","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u7389\u9a30-\u4e09\u5409\u6bb5\u900f\u5929\u4f4f\u5b85","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u6797\u7389\u9a30","\u7c3d\u7d04",108000,"20230628",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00393 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,108000],"3MH00394":["3MH00394","M230891","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u674e\u5149\u4eae-\u4e09\u5409\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u674e\u5149\u4eae","\u7c3d\u7d04",108000,"20230628",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00394 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,108000],"3MH00395":["3MH00395","M230892","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u674e\u54c1\u5112-\u4e09\u5409\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u674e\u54c1\u5112","\u7c3d\u7d04",108000,"20230628",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00395 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,108000],"3MH00396":["3MH00396","M230893","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9673\u5049\u6069,-\u4e09\u5409\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u9673\u5049\u6069,-\u4e09\u5409\u6bb5","\u7c3d\u7d04",108000,"20230628",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00396 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,108000],"3MH00397":["3MH00397","M230894","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5ed6\u5049\u5b89-\u4e09\u5409\u6bb5\u900f\u5929\u4f4f\u5b85","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u5ed6\u5049\u5b89-\u4e09\u5409\u6bb5\u900f\u5929\u4f4f\u5b85","\u7c3d\u7d04",108000,"20230628",108000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00397 (2024-04-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,108000],"3MH00398":["3MH00398","M230895","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u934f\u4f51-\u7901\u6eaa\u5be6\u8e10\u4e00\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u6797\u934f\u4f51","\u7c3d\u7d04",104000,"20230628",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00398 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00354":["3MH00354","M230896","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","24583130","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u6c11\u548c\u8def\u4e8c\u6bb5330\u865f1\u6a13","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230610",162000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"20230821",162000,0,0,3,"-",0,"20231007",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",162000,"20231129",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00354 (2023-11-29\u8a66\u8eca\u5b8c\u7562) ; ",540000,324000],"3MH00353":["3MH00353","M230896","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","24583130","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u6c11\u548c\u8def\u4e8c\u6bb5330\u865f1\u6a13","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230610",162000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"20230821",162000,0,0,3,"-",0,"20231018",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",162000,"20231101",162000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00353 (2023-11-01\u8a66\u8eca\u5b8c\u7562) ; ",540000,486000],"3MH00352":["3MH00352","M230896","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","24583130","\u53f0\u4e2d\u5e02\u6e05\u6c34\u5340\u6c11\u548c\u8def\u4e8c\u6bb5330\u865f1\u6a13","\u52dd\u90a6\u958b\u767c\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230610",162000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"20230821",162000,0,0,3,"-",0,"20231011",0,0,0,1,"\u8a66\u8eca\u5b8c\u5de5",162000,"20231027",162000,0,0,1,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00352 (2023-10-27\u8a66\u8eca\u5b8c\u7562) ; ",540000,486000],"3MH00399":["3MH00399","M230897","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u97cb\u5747-\u7901\u6eaa\u5be6\u8e10\u4e00\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u6797\u97cb\u5747","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00399 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00400":["3MH00400","M230898","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u6797\u7389\u9a30-\u7901\u6eaa\u5be6\u8e10\u4e00\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u6797\u7389\u9a30","\u7c3d\u7d04",104000,"20230621",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00400 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00401":["3MH00401","M230899","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u7c21\u541f\u6f54-\u7901\u6eaa\u5be6\u8e10\u4e00\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u7c21\u541f\u6f54","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00401 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00402":["3MH00402","M230900","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u7c21\u5609\u76c8-\u7901\u6eaa\u5be6\u8e10\u4e00\u6bb5","","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u56db\u7d50\u6751\u5149\u69ae\u5317\u8def199\u865f","\u7c21\u5609\u76c8","\u7c3d\u7d04",104000,"20230620",104000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00402 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MX00815":["3MX00815","M23090002","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u8cfd\u65af\u65b0\u80fd\u6e90(\u65b0\u5409\u6bb5)","54197753","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u91cd\u548c\u8def128-1\u865f","\u8cfd\u65af\u65b0\u80fd\u6e90\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",220000,"20231003",220000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",550000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",220000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca'",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00815 (2024-02-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1100000,220000],"3MP00966":["3MP00966","M23090003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7bc9\u5712\u5de5\u7a0b\u9867\u554f\u6709\u9650\u516c\u53f8","45895279","\u81fa\u5357\u5e02\u5b89\u5357\u5340\u672c\u539f\u88572\u6bb566\u865f","\u7bc9\u5712\u5de5\u7a0b\u9867\u554f\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",136000,"20231120",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00966 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,0],"3MH00737":["3MH00737","M23090038","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u7965\u7db8\u5efa\u8a2d(\u6f84\u5408\u6bb5)","24988391","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u5efa\u570b\u4e00\u8def62\u5df712\u865f","\u7965\u7db8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230918",110000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00737 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00736":["3MH00736","M23090038","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u7965\u7db8\u5efa\u8a2d(\u6f84\u5408\u6bb5)","24988391","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u5efa\u570b\u4e00\u8def62\u5df712\u865f","\u7965\u7db8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",115000,"20230918",115000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",115000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00736 (2024-01-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",575000,115000],"3MH00735":["3MH00735","M23090038","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u7965\u7db8\u5efa\u8a2d(\u6f84\u5408\u6bb5)","24988391","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u5efa\u570b\u4e00\u8def62\u5df712\u865f","\u7965\u7db8\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",115000,"20230918",115000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",287500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",115000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00735 (2024-01-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",575000,115000],"3MW00959":["3MW00959","M23090063","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9023\u51a0\u5efa\u8a2d-\u570b\u6c11\u4e00\u6bb5","24850240","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6c11\u6b0a\u91cc\u4e2d\u5c71\u8def\u4e8c\u6bb5213\u865f\u4e00\u6a13","\u9023\u51a0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",182000,"20231110",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",455000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",182000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",91000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00959 (2024-04-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",910000,0],"3MW00958":["3MW00958","M23090063","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9023\u51a0\u5efa\u8a2d-\u570b\u6c11\u4e00\u6bb5","24850240","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6c11\u6b0a\u91cc\u4e2d\u5c71\u8def\u4e8c\u6bb5213\u865f\u4e00\u6a13","\u9023\u51a0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",182000,"20231110",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",455000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",182000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",91000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00958 (2024-04-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",910000,0],"3MW00940":["3MW00940","M23090068","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u773e\u4fe1\u71df\u9020(\u4e2d\u58e2\u57d4\u9802\u6bb5)","12632430","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u838a\u656c\u91cc\u6771\u8c50\u8def27\u865f1\u6a13","\u773e\u4fe1\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",294000,"20231114",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",392000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",196000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00940 (2025-02-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,0],"3MH00790":["3MH00790","M23090069","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u76e7\u4e16\u8ce2","","\u53f0\u4e2d\u5e02\u5927\u96c5\u5340\u7fa9\u548c\u8def11\u4e4b3\u865f","\u76e7\u4e16\u8ce2","\u7c3d\u7d04",156000,"20231002",156000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00790 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MH00787":["3MH00787","M23090074","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u6b0a\u9d6c\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","64953019","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u5149\u83ef\u4e00\u8def206\u865f6\u6a13\u4e4b6","\u6b0a\u9d6c\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",102000,"20230926",102000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",170000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00787 (2024-03-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,102000],"3MW00845":["3MW00845","M23090095","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u683c\u8aa0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","42951190","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u5c71\u7281\u91cc\u4ec1\u5b87\u8def135\u865f1\u6a13","\u683c\u8aa0\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u5408\u7d04\u7c3d\u8a02",220000,"20231017",220000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",330000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",330000,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",110000,"-",0,0,0,0,"\u4ea4\u8eca",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00845 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1100000,220000],"3MW00847":["3MW00847","M23090096","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","55902334","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u5c71\u7281\u91cc\u4ec1\u5b87\u8def137\u865f1\u6a13","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u5408\u7d04\u7c3d\u8a02",234000,"20231018",234000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",351000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",351000,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",117000,"-",0,0,0,0,"\u4ea4\u8eca",117000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00847 (2024-05-15T10:00\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1170000,234000],"3MW00846":["3MW00846","M23090096","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","55902334","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u5c71\u7281\u91cc\u4ec1\u5b87\u8def137\u865f1\u6a13","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u5408\u7d04\u7c3d\u8a02",252000,"20231018",252000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",378000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",378000,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",126000,"-",0,0,0,0,"\u4ea4\u8eca",126000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00846 (2024-05-15T10:00\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1260000,252000],"3MH00848":["3MH00848","M23090097","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","55902334","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u5c71\u7281\u91cc\u4ec1\u5b87\u8def137\u865f","\u683c\u777f\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u5408\u7d04\u7c3d\u8a02",166000,"20231017",166000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",249000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",249000,"-",0,0,0,0,"\u53d6\u5f97\u5408\u683c\u51fd",83000,"-",0,0,0,0,"\u4ea4\u8eca",83000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00848 (2024-05-15T10:00\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",830000,166000],"3MH00877":["3MH00877","M23090111","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u694a\u518d\u6dfb(\u9673\u6176\u8208\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u54e1\u5c71\u9109\u4e03\u8ce2\u6751\u4e03\u8ce2\u8def246\u865f(\u9673\u6176\u8208\u8fb2\u820d)","\u694a\u518d\u6dfb(\u9673\u6176\u8208\u8fb2\u820d)","\u7c3d\u7d04",106000,"20231103",106000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00877 (2024-05-21\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00813":["3MH00813","M23090113","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u99ff\u9818\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","60201017","\u81fa\u4e2d\u5e02\u6e05\u6c34\u5340\u6b66\u9e7f\u91cc\u4e2d\u592e\u8def51\u4e4b43\u865f1\u6a13","\u99ff\u9818\u71df\u9020\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20230928",225000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",225000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00813 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,225000],"3MW00844":["3MW00844","M23090130","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8a60\u5b89\u5efa\u8a2d(\u6e2f\u5b50\u5c3e)","54559755","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5149\u5dde\u4e09\u885793\u865f","\u8a60\u5b89\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",188000,"20231016",188000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",470000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",188000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",94000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00844 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",940000,188000],"3MW00843":["3MW00843","M23090130","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8a60\u5b89\u5efa\u8a2d(\u6e2f\u5b50\u5c3e)","54559755","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5149\u5dde\u4e09\u885793\u865f","\u8a60\u5b89\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",188000,"20231016",188000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",470000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",188000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",94000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00843 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",940000,188000],"3MW00842":["3MW00842","M23090130","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8a60\u5b89\u5efa\u8a2d(\u6e2f\u5b50\u5c3e)","54559755","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5149\u5dde\u4e09\u885793\u865f","\u8a60\u5b89\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20231016",190000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",475000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00842 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",950000,190000],"3MW00841":["3MW00841","M23090130","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8a60\u5b89\u5efa\u8a2d(\u6e2f\u5b50\u5c3e)","54559755","\u53f0\u5357\u5e02\u5b89\u5e73\u5340\u5149\u5dde\u4e09\u885793\u865f","\u8a60\u5b89\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20231016",190000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",475000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00841 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",950000,190000],"3MX00860":["3MX00860","M23090132","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4e0a\u7fa4\u5730\u7522\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","42607227","\u96f2\u6797\u7e23\u5d19\u80cc\u9109\u5357\u967d\u6751\u4e2d\u5c71\u8def153\u865f1\u6a13","\u4e0a\u7fa4\u5730\u7522\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",113000,"20231024",113000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",565000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",339000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",113000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00860 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1130000,113000],"3MX00859":["3MX00859","M23090132","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4e0a\u7fa4\u5730\u7522\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","42607227","\u96f2\u6797\u7e23\u5d19\u80cc\u9109\u5357\u967d\u6751\u4e2d\u5c71\u8def153\u865f1\u6a13","\u4e0a\u7fa4\u5730\u7522\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",116999.99999999999,"20231024",116999.99999999999,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",585000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",350999.99999999994,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",116999.99999999999,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00859 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1170000,116999.99999999999],"3MW00858":["3MW00858","M23090140","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","28164720","\u96f2\u6797\u7e23\u571f\u5eab\u93ae\u77f3\u5edf\u91cc\u4e2d\u8208\u8def200\u5df723\u865f1\u6a13","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",102000,"20231024",102000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",510000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",306000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",102000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00858 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1020000,102000],"3MW00857":["3MW00857","M23090140","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","28164720","\u96f2\u6797\u7e23\u571f\u5eab\u93ae\u77f3\u5edf\u91cc\u4e2d\u8208\u8def200\u5df723\u865f1\u6a13","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",102000,"20231024",102000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",510000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",306000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",102000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00857 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1020000,102000],"3MW00856":["3MW00856","M23090140","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","28164720","\u96f2\u6797\u7e23\u571f\u5eab\u93ae\u77f3\u5edf\u91cc\u4e2d\u8208\u8def200\u5df723\u865f1\u6a13","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",98000,"20231024",98000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",490000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00856 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,98000],"3MW00855":["3MW00855","M23090140","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","28164720","\u96f2\u6797\u7e23\u571f\u5eab\u93ae\u77f3\u5edf\u91cc\u4e2d\u8208\u8def200\u5df723\u865f1\u6a13","\u5ee3\u74cf\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",98000,"20231024",98000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",490000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",294000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",98000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00855 (2024-06-14T10:10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",980000,98000],"3MH00851":["3MH00851","M23090142","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5929\u9d3b\u71df\u9020(\u6771\u9580\u6bb596)","79956387","\u9ad8\u96c4\u5e02\u7f8e\u6fc3\u5340\u96d9\u5cf0\u88576-5\u865f","\u5929\u9d3b\u71df\u9020\u6709\u9650\u516c\u53f8","\u5de5\u5730\u52d5\u5de5",124000,"20231017",124000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",310000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",124000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",62000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00851 (2024-01-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",620000,124000],"3MH00850":["3MH00850","M23090142","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5929\u9d3b\u71df\u9020(\u6771\u9580\u6bb596)","79956387","\u9ad8\u96c4\u5e02\u7f8e\u6fc3\u5340\u96d9\u5cf0\u88576-5\u865f","\u5929\u9d3b\u71df\u9020\u6709\u9650\u516c\u53f8","\u5de5\u5730\u52d5\u5de5",124000,"20231017",124000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",310000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",124000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",62000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00850 (2024-01-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",620000,124000],"3MP00865":["3MP00865","M23090150","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u701a\u9ecc\u6a18\u63a7\u80a1-\u65b0\u57d4\u4e03\u8857","90502264","\u81fa\u5317\u5e02\u4fe1\u7fa9\u5340\u57fa\u9686\u8def1\u6bb5420\u865f7\u6a13","\u701a\u9ecc\u6a18\u63a7\u80a1\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",204000,"20231031",204000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00865 (2024-01-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,204000],"3MH00412":["3MH00412","M230903","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5bcc\u9091\u958b\u767c-\u5f70\u5316\u5317\u6597\u93ae","53299970","\u5f70\u5316\u7e23\u6eaa\u5dde\u9109\u6eaa\u5dde\u6751\u4e2d\u5c71\u8def\u4e09\u6bb55\u865f1\u6a13","\u5bcc\u9091\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20230619",159000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00412 (2024-06-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,159000],"3MW00413":["3MW00413","M230904","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5bcc\u9091\u958b\u767c-\u7530\u5c3e\u798f\u5fb7\u6bb5","53299970","\u5f70\u5316\u7e23\u6eaa\u5dde\u9109\u6eaa\u5dde\u6751\u4e2d\u5c71\u8def\u4e09\u6bb55\u865f1\u6a13","\u5bcc\u9091\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",234000,"20230619",234000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",234000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",234000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00413 (2024-10-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",780000,234000],"3MH00418":["3MH00418","M230910","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u4fe1\u5229\u71df\u9020(\u6eaa\u53e3\u6bb5)","28110632","\u5609\u7fa9\u5e02\u897f\u5340\u7389\u5c71\u8def833\u865f","\u51a0\u79d1\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",112000,"20230621",112000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00418 (2024-03-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MW00419":["3MW00419","M230927","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u8606\u8466\u555f\u667a\u4e2d\u5fc3","89839281","\u81fa\u5357\u5e02\u6771\u5340\u6771\u667a\u91cc\u5d07\u6176\u88571\u6bb5122\u865f","\u90e1\u744b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",192000,"20230627",192000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",480000,"20231215",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",192000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",96000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00419 (2023-12-15\u8ca8\u62b5\u5de5\u5730) ; ",960000,192000],"3MW00696":["3MW00696","M230936","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","47183310","\u65b0\u7af9\u5e02\u5317\u5927\u8def68\u865f4\u6a13","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",352235,"20230922",352235,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",704470,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",440293.8023792883,"-",0,0,0,0,"\u53d6\u5f97\u8a31\u53ef\u51fd",176117.3952414234,"-",0,0,0,0,"\u6838\u53ef\u51fd\u53d6\u5f97\u5f8c6\u500b\u6708",88058.80237928829,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00696 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1761175,352235],"3MW00699":["3MW00699","M230936","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","47183310","\u65b0\u7af9\u5e02\u5317\u5927\u8def68\u865f4\u6a13","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",332235,"20230922",332235,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",664470,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",415293.7994051779,"-",0,0,0,0,"\u53d6\u5f97\u8a31\u53ef\u51fd",166117.40118964415,"-",0,0,0,0,"\u6838\u53ef\u51fd\u53d6\u5f97\u5f8c6\u500b\u6708",83058.79940517792,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00699 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1661174.9999999998,332235],"3MW00698":["3MW00698","M230936","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","47183310","\u65b0\u7af9\u5e02\u5317\u5927\u8def68\u865f4\u6a13","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",322235,"20230922",322235,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",644470,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",402793.7979181227,"-",0,0,0,0,"\u53d6\u5f97\u8a31\u53ef\u51fd",161117.40416375452,"-",0,0,0,0,"\u6838\u53ef\u51fd\u53d6\u5f97\u5f8c6\u500b\u6708",80558.79791812274,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00698 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1611175,322235],"3MW00697":["3MW00697","M230936","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","47183310","\u65b0\u7af9\u5e02\u5317\u5927\u8def68\u865f4\u6a13","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",322235,"20230922",322235,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",644470,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",402793.7979181227,"-",0,0,0,0,"\u53d6\u5f97\u8a31\u53ef\u51fd",161117.40416375452,"-",0,0,0,0,"\u6838\u53ef\u51fd\u53d6\u5f97\u5f8c6\u500b\u6708",80558.79791812274,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00697 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1611175,322235],"3MW00695":["3MW00695","M230936","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","47183310","\u65b0\u7af9\u5e02\u5317\u5927\u8def68\u865f4\u6a13","\u555f\u68ee\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",352235,"20230922",352235,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",704470,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",440293.8023792883,"-",0,0,0,0,"\u53d6\u5f97\u8a31\u53ef\u51fd",176117.3952414234,"-",0,0,0,0,"\u6838\u53ef\u51fd\u53d6\u5f97\u5f8c6\u500b\u6708",88058.80237928829,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00695 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1761175,352235],"3MH00499":["3MH00499","M230942","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u738b\u69ae\u677e","","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u83ef\u660e\u885733\u5df729\u865f","\u738b\u69ae\u677e","\u7c3d\u7d04",112000,"20230705",112000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00499 (2024-03-12\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00409":["3MH00409","M230943","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5ca9\u7f8e\u958b\u767c\u5efa\u8a2d-\u4e2d\u58e2\u6848","82768085","\u6843\u5712\u5e02\u6843\u5712\u5340\u540c\u5b89\u91cc\u4e2d\u5c71\u8def1088\u865f7\u6a13","\u5ca9\u7f8e\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20230623",174000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"20231012",232000,0,0,1,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00409 (2023-10-12\u8ca8\u62b5\u5de5\u5730) ; ",580000,406000],"3MH00408":["3MH00408","M230943","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5ca9\u7f8e\u958b\u767c\u5efa\u8a2d-\u4e2d\u58e2\u6848","82768085","\u6843\u5712\u5e02\u6843\u5712\u5340\u540c\u5b89\u91cc\u4e2d\u5c71\u8def1088\u865f7\u6a13","\u5ca9\u7f8e\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20230623",174000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"20231012",232000,0,0,1,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00408 (2023-10-12\u8ca8\u62b5\u5de5\u5730) ; ",580000,406000],"3MH00529":["3MH00529","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00529 (2024-08-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00528":["3MH00528","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00528 (2024-08-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00527":["3MH00527","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00527 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00526":["3MH00526","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00526 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00525":["3MH00525","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00525 (2024-06-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00524":["3MH00524","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00524 (2024-06-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00523":["3MH00523","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00523 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00522":["3MH00522","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00522 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00521":["3MH00521","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00521 (2024-07-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00520":["3MH00520","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00520 (2024-07-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00519":["3MH00519","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00519 (2024-07-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00518":["3MH00518","M230947","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d \u7fa9\u6210\u6bb5\u900f\u5929&\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00518 (2024-07-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MX00536":["3MX00536","M230954","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u84bc\u9054\u85e5\u54c1\u5ee0\u623f","27663993","\u81fa\u5357\u5e02\u6771\u5340\u548c\u5e73\u91cc\u81ea\u7531\u8def2\u6bb5183\u865f","\u6b23\u79be\u8c50\u71df\u9020\u5de5\u7a0b\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",292000,"20230709",292000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",730000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",292000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",146000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00536 (2024-01-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1460000,292000],"3MH00853":["3MH00853","M230967","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u7bc9\u6797\u8208\u696d(\u5317\u6210\u6bb5\u4f4f\u5b85)","90034190","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u6885\u6d32\u91cc\u6885\u6d32\u4e00\u8def22\u865f1\u6a13","\u7bc9\u6797\u8208\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",107000,"20231019",107000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",267500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",107000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00853 (2024-02-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",535000,107000],"3MH00485":["3MH00485","M230968","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u4e03\u8ce2\u571f\u6728\u5305\u5de5\u696d(\u674e\u9577\u767c\u8fb2\u6703)","83013662","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u5065\u5eb7\u8def\u4e09\u6bb530\u865f\u56db\u6a13\u4e4b\u4e8c","\u4e03\u8ce2\u571f\u6728\u5305\u5de5\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230707",104000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00485 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00541":["3MH00541","M230969","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u798f\u570b\u71df\u9020(\u7c21\u6e05\u9e92)","16864430","\u6843\u5712\u5e02\u65b0\u5c4b\u5340\u4e2d\u8208\u8def158\u865f1\u6a13","\u798f\u570b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20230628",159000,0,0,5,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00541 (2024-03-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,159000],"3MH00486":["3MH00486","M230971","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u838a\u70b3\u6960(\u4e94\u7d50\u9109\u5b5d\u5a01\u4e00\u8def16\u865f\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u9999\u4e2d\u8def55\u865f","\u838a\u70b3\u6960","\u7c3d\u7d04",110000,"20230710",110000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00486 (2024-02-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MW00490":["3MW00490","M230982","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u4e9e\u7063\u958b\u767c\u6709\u9650\u516c\u53f8","82969082","\u53f0\u4e2d\u5e02\u68a7\u68f2\u5340\u535a\u611b\u5317\u8def185\u865f1\u6a13","\u4e9e\u7063\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",309000,"20230712",309000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",412000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",206000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",103000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00490 (2024-10-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1030000,309000],"3MW00489":["3MW00489","M230982","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u4e9e\u7063\u958b\u767c\u6709\u9650\u516c\u53f8","82969082","\u53f0\u4e2d\u5e02\u68a7\u68f2\u5340\u535a\u611b\u5317\u8def185\u865f1\u6a13","\u4e9e\u7063\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",321000,"20230712",321000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",428000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",214000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",107000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00489 (2024-10-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1070000,321000],"3MH00269":["3MH00269","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00269 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00268":["3MH00268","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00268 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00270":["3MH00270","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00270 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00271":["3MH00271","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00271 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00272":["3MH00272","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00272 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00273":["3MH00273","M230994","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u6751\u7389\u5efa\u8a2d-\u9577\u6625\u8def\u6848(B\u68df)","53054341","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u516c\u5b89\u91cc\u6771\u4ec1\u8def221\u865f1\u6a13","\u6751\u7389\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230922",165000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00273 (2024-05-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MX00510":["3MX00510","M230998","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u6085\u5408\u958b\u767c-\u6771\u5340\u65f1\u6eaa\u6bb5","82818705","\u81fa\u4e2d\u5e02\u5317\u5c6f\u5340\u5d07\u5fb7\u4e09\u8def45\u865f7\u6a13\u4e4b2","\u6085\u5408\u958b\u767c\u5be6\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20221025",0,0,0,13,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00510 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00964":["3MH00964","M23100004","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u67ef\u52dd\u8a13","","\u5f70\u5316\u7e23\u548c\u7f8e\u93ae\u5927\u4f43\u8def5\u5df718\u865f","\u67ef\u52dd\u8a13","\u7c3d\u7d04",216000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",216000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",216000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00964 (2024-06-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",720000,0],"3MH00923":["3MH00923","M23100012","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u912d\u6c40\u4f51-\u79c0\u5fe0\u6bb5\u4f4f\u5b85","","\u5f70\u5316\u7e23\u79c0\u6c34\u9109\u79c0\u4e2d\u885796\u5df713\u865f","\u912d\u6c40\u4f51","\u7c3d\u7d04",174000,"20231107",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00923 (2024-02-23\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00882":["3MH00882","M23100019","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u60e0\u9f0e\u71df\u9020\u6709\u9650\u516c\u53f8","12920312","\u81fa\u4e2d\u5e02\u897f\u5340\u4e94\u6b0a\u897f\u8def\u4e00\u6bb5237\u865f8\u6a13\u4e4b1","\u60e0\u9f0e\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",195000,"20231026",195000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00882 (2024-01-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",650000,195000],"3MH00797":["3MH00797","M23100024","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u592a\u5e73\u6d0b\u96fb\u68af\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","33747606","\u65b0\u5317\u5e02\u4e09\u91cd\u5340\u8208\u5fb7\u8def113\u865f13\u6a13","\u592a\u5e73\u6d0b\u96fb\u68af\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",236250,"20231004",236250,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"20231205",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",157500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78750,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00797 (2023-12-05\u8ca8\u62b5\u5de5\u5730) ; ",787500,236250],"3MX00969":["3MX00969","M23100027","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u7e3d\u8ca1\u5efa\u8a2d\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","86529706","\u81fa\u4e2d\u5e02\u5317\u5c6f\u5340\u5927\u9023\u8def\u4e09\u6bb5116\u865f2\u6a13","\u7e3d\u8ca1\u5efa\u8a2d\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",218400,"20231129",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",218400,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",218400,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00969 (2024-08-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",728000,0],"3MX00968":["3MX00968","M23100027","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u9ec3\u5b5f\u6fa4","\u7e3d\u8ca1\u5efa\u8a2d\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","86529706","\u81fa\u4e2d\u5e02\u5317\u5c6f\u5340\u5927\u9023\u8def\u4e09\u6bb5116\u865f2\u6a13","\u7e3d\u8ca1\u5efa\u8a2d\u5be6\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",218400,"20231129",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",218400,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",218400,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00968 (2024-08-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",728000,0],"3MH00926":["3MH00926","M23100051","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5c71\u738b\u71df\u9020\u6709\u9650\u516c\u53f8","83753223","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u8ecd\u798f\u5341\u516d\u8def342\u865f14\u6a13","\u5c71\u738b\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231023",159000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00926 (2024-02-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,159000],"3MH00938":["3MH00938","M23100061","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u5ed6\u82f1\u51f1","","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u5fa9\u83ef\u4e09\u885790\u5df718\u865f14\u6a13\u4e4b3","\u5ed6\u82f1\u51f1","\u7c3d\u7d04",144000,"20231113",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",144000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00938 (2024-04-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",720000,0],"3MH00880":["3MH00880","M23100063","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5b8f\u5320\u571f\u6728\u5305\u5de5\u696d(\u67ef\u99ff\u627f)","40626634","\u53f0\u4e2d\u5e02\u5927\u7532\u5340\u5fb7\u5316\u91cc\u6771\u897f\u516b\u8def\u4e00\u6bb5398\u5df732\u865f","\u5b8f\u5320\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",162000,"20231031",162000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00880 (2024-02-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,162000],"3MH00956":["3MH00956","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00956 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH00955":["3MH00955","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00955 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH00954":["3MH00954","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00954 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH00953":["3MH00953","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00953 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH00952":["3MH00952","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00952 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH00951":["3MH00951","M23100065","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","90164550","\u81fa\u4e2d\u5e02\u5357\u5340\u798f\u9806\u91cc\u5e73\u9806\u8857108\u865f1\u6a13","\u9360\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231115",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00951 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH01046":["3MH01046","M23100076","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u96f2\u78ca\u5efa\u8a2d","83135166","\u81fa\u4e2d\u5e02\u5357\u5340\u6a39\u5fb7\u91cc\u5fb7\u5bcc\u8def97\u865f4\u6a13","\u96f2\u78ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20231207",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01046 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH01045":["3MH01045","M23100076","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u96f2\u78ca\u5efa\u8a2d","83135166","\u81fa\u4e2d\u5e02\u5357\u5340\u6a39\u5fb7\u91cc\u5fb7\u5bcc\u8def97\u865f4\u6a13","\u96f2\u78ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20231207",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01045 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH01044":["3MH01044","M23100076","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u96f2\u78ca\u5efa\u8a2d","83135166","\u81fa\u4e2d\u5e02\u5357\u5340\u6a39\u5fb7\u91cc\u5fb7\u5bcc\u8def97\u865f4\u6a13","\u96f2\u78ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20231207",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01044 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH01043":["3MH01043","M23100076","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u96f2\u78ca\u5efa\u8a2d","83135166","\u81fa\u4e2d\u5e02\u5357\u5340\u6a39\u5fb7\u91cc\u5fb7\u5bcc\u8def97\u865f4\u6a13","\u96f2\u78ca\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20231207",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01043 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH00977":["3MH00977","M23100078","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u65b0\u7af9\u5e02\u6b66\u9675\u6bb5(\u59dc\u4f73\u59a1)","","\u65b0\u7af9\u7e23\u65b0\u7af9\u5e02\u7e23\u653f\u4e00\u8857121\u865f2\u6a13\u4e4b1","\u59dc\u4f73\u59a1","\u7c3d\u7d04",199500,"20231123",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",266000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",133000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00977 (2024-07-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",665000,0],"3MH00978":["3MH00978","M23100082","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9756\u6377\u4f01\u696d\u793e","21853124","\u53f0\u4e2d\u5e02\u6c99\u9e7f\u5340\u56db\u5e73\u88576\u5df728-10\u865f","\u9756\u6377\u4f01\u696d\u793e","\u7c3d\u7d04",174000,"20231129",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00978 (2024-03-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MP00937":["3MP00937","M23100089","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9f8d\u83ef\u8857\u516d\u89d2\u7a7a\u9593","82881679","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u6559\u4ec1\u8def98\u865f2\u6a13","\u516d\u89d2\u7a7a\u9593\u8a2d\u8a08\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20231108",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00937 (2024-03-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH01031":["3MH01031","M23100091","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u91d1\u8c50\u6cf0","86914460","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u5927\u660c\u4e00\u8def221\u865f6\u6a13","\u91d1\u8c50\u6cf0\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",140000,"20231206",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01031 (2024-04-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MP00936":["3MP00936","M23100102","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6c38\u8208\u5e73\u53f0\u68af","91803696","\u5c4f\u6771\u7e23\u6771\u6e2f\u93ae\u4e2d\u5c71\u8def4-1\u865f","\u6c38\u8208\u6a5f\u8eca\u884c","\u7c3d\u7d04",156000,"20231103",156000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP00936 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",780000,156000],"3MW00927":["3MW00927","M23100104","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u611b\u5c71\u6797\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","22190686","\u53f0\u5317\u5e02\u5927\u5b89\u5340\u5fe0\u5b5d\u6771\u8def\u56db\u6bb5166\u865f11\u6a13\u4e4b2","\u611b\u5c71\u6797\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",255000,"20231103",255000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",255000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",255000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",85000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00927 (2024-01-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",850000,255000],"3MX00935":["3MX00935","M23100120","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u548c\u660c\u5efa\u8a2d (\u65b0\u548c\u6bb5)","55913732","\u5c4f\u6771\u7e23\u842c\u4e39\u9109\u4e39\u69ae\u8def751\u865f","\u548c\u660c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20231109",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00935 (2024-02-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,0],"3MX00934":["3MX00934","M23100120","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u548c\u660c\u5efa\u8a2d (\u65b0\u548c\u6bb5)","55913732","\u5c4f\u6771\u7e23\u842c\u4e39\u9109\u4e39\u69ae\u8def751\u865f","\u548c\u660c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",180000,"20231109",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",450000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",180000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00934 (2024-02-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,0],"3MH01029":["3MH01029","M23100126","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u51a0\u8679\u5efa\u8a2d(\u6e56\u7f8e\u5c0f\u6bb5401)","23822773","\u5609\u7fa9\u5e02\u798f\u6c11\u91cc\u4e0a\u6d77\u8def78\u865f","\u51a0\u8679\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",118000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",295000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",118000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",59000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01029 (2024-04-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",590000,0],"3MH00957":["3MH00957","M23100129","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u91d1\u9806\u5104\u5927\u5751\u5df7\u4e8c\u671f","25164937","\u81fa\u4e2d\u5e02\u9727\u5cf0\u5340\u672c\u5802\u91cc\u6797\u68ee\u8def608\u865f1\u6a13","\u91d1\u9806\u5104\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",195000,"20231116",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",195000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00957 (2024-02-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",650000,0],"3MH00962":["3MH00962","M23100133","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u7e3d\u5bcc\u5efa\u8a2d-\u5f70\u5316\u6eaa\u5dde\u9109","55879376","\u5f70\u5316\u7e23\u6eaa\u5dde\u9109\u6eaa\u5dde\u6751012\u9130\u4e2d\u5c71\u8def\u4e09\u6bb59\u5df73\u865f1\u6a13","\u7e3d\u5bcc\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",183000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",183000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",183000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",61000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00962 (2024-02-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",610000,0],"3MH01047":["3MH01047","M23100135","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u8d99\u6f22\u9716","\u9245\u7acb\u71df\u9020","16394402","\u81fa\u4e2d\u5e02\u5317\u5340\u6de1\u6e9d\u91cc\u535a\u9928\u8def88\u865f12\u6a13\u4e4b1","\u9245\u7acb\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",225000,"20231208",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",150000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",75000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01047 (2024-05-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",750000,0],"3MH01034":["3MH01034","M23100138","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u738b\u51f1\u8389","24601931","\u53f0\u4e2d\u5e02\u897f\u5340\u4e2d\u7f8e\u885741\u5df77\u865f","\u9d3b\u7440\u570b\u969b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",201000,"20231213",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",201000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",201000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01034 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",670000,0],"3MH01019":["3MH01019","M23100139","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u738b\u7027\u965e","","\u53f0\u4e2d\u5e02\u6f6d\u5b50\u5340\u5f18\u4ec1\u885765\u5df75\u865f","\u738b\u7027\u965e","\u7c3d\u7d04",159000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01019 (2024-10-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,0],"3MH01048":["3MH01048","M23100140","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u8586\u7d89\u5ba4\u5167\u88dd\u4fee\u5de5\u7a0b\u6709\u9650\u516c\u53f8","61943137","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u65b0\u4ec1\u4e8c\u885728\u865f2\u6a13","\u8586\u7d89\u5ba4\u5167\u88dd\u4fee\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20231216",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",149000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01048 (2024-03-11\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,0],"3MW00965":["3MW00965","M231002","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u78ec\u63da\u5efa\u8a2d\u6709\u9650\u516c\u53f8","83272702","\u82b1\u84ee\u7e23\u5409\u5b89\u9109\u4ec1\u91cc\u6751\u4e2d\u5c71\u8def\u4e00\u6bb564\u865f1\u6a13","\u78ec\u63da\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",201600,"20231128",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",504000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",201600,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",100800,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00965 (2024-04-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1008000,0],"3MH00711":["3MH00711","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",135000.00000000003,"20230823",135000.00000000003,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",337500.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",135000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67500.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00711 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",675000.0000000001,135000.00000000003],"3MH00710":["3MH00710","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",135000.00000000003,"20230823",135000.00000000003,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",337500.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",135000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67500.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00710 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",675000.0000000001,135000.00000000003],"3MH00709":["3MH00709","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",135000.00000000003,"20230823",135000.00000000003,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",337500.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",135000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67500.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00709 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",675000.0000000001,135000.00000000003],"3MH00708":["3MH00708","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",135000.00000000003,"20230823",135000.00000000003,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",337500.00000000006,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",135000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67500.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00708 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",675000.0000000001,135000.00000000003],"3MH00707":["3MH00707","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",131000,"20230823",131000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",327500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",131000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00707 (2024-03-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",655000,131000],"3MH00706":["3MH00706","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",131000,"20230823",131000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",327500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",131000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00706 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",655000,131000],"3MH00705":["3MH00705","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",131000,"20230823",131000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",327500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",131000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00705 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",655000,131000],"3MH00704":["3MH00704","M231003","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u9707\u71df\u5efa\u8a2d-\u6046\u6625\u6848","23343984","\u9ad8\u96c4\u5e02\u82d3\u96c5\u5340\u4e94\u798f\u4e09\u8def101\u865f3\u6a13\u4e4b1","\u9707\u71df\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",131000,"20230823",131000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",327500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",131000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00704 (2024-03-08\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",655000,131000],"3MH00876":["3MH00876","M231006","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7d18\u6b46\u71df\u9020\u5de5\u7a0b(\u7389\u5357\u6bb5)(\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d)","26423406","\u53f0\u5357\u5e02\u5b89\u5357\u5340\u5b89\u8def\u56db\u6bb5176\u5df71\u865f","\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",106000,"20231018",106000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00876 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00875":["3MH00875","M231006","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7d18\u6b46\u71df\u9020\u5de5\u7a0b(\u7389\u5357\u6bb5)(\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d)","26423406","\u53f0\u5357\u5e02\u5b89\u5357\u5340\u5b89\u8def\u56db\u6bb5176\u5df71\u865f","\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",106000,"20231018",106000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00875 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00874":["3MH00874","M231006","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u7d18\u6b46\u71df\u9020\u5de5\u7a0b(\u7389\u5357\u6bb5)(\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d)","26423406","\u53f0\u5357\u5e02\u5b89\u5357\u5340\u5b89\u8def\u56db\u6bb5176\u5df71\u865f","\u69ae\u946b\u571f\u6728\u5305\u5de5\u696d","\u7c3d\u7d04",106000,"20231018",106000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00874 (2024-04-09\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00531":["3MH00531","M231019","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u9673\u6b66\u7965\u5efa\u7bc9\u5e2b\u982d\u57ce\u70cf\u77f3\u6e2f\u6bb524\u5730\u865f","","\u5b9c\u862d\u7e23\u982d\u57ce\u93ae\u6e2f\u53e3\u91cc36\u865f","\u90b1\u5fd7\u5168","\u7c3d\u7d04",146000,"20231130",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",365000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",146000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",73000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00531 (2024-02-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",730000,0],"3MW00939":["3MW00939","M231024","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u767d\u6c34\u82b3\u83ef\u9152\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","28167661","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u65b0\u751f\u91cc\u4e2d\u5c71\u8def5\u6bb5252\u5df748,50\u865f","\u767d\u6c34\u82b3\u83ef\u9152\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",182000,"20231113",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",455000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",182000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",91000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00939 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",910000,0],"3MH00881":["3MH00881","M231026","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u4f0d\u7043\u71df\u9020\u958b\u767c\u6709\u9650\u516c\u53f8","83305437","\u5609\u7fa9\u5e02\u897f\u5340\u4fdd\u798f\u91cc\u570b\u63da\u4e00\u88573\u865f1\u6a13","\u4f0d\u7043\u71df\u9020\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",156000,"20230901",156000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00881 (2024-05-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,156000],"3MH00639":["3MH00639","M231029","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u767c\u798f\u5de5\u7a0b\u884c","25234645","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u5167\u65b0\u91cc\u65b0\u5357\u8def75-4\u865f","\u767c\u798f\u5de5\u7a0b\u884c","\u7c3d\u7d04",186000,"20230818",186000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",186000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",186000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",62000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00639 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",620000,186000],"3MH00796":["3MH00796","M231030","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u9673\u6176\u5b8f","","\u53f0\u4e2d\u5e02\u70cf\u65e5\u5340\u6eaa\u5357\u8def\u4e00\u6bb5360\u865f","\u9673\u6176\u5b8f","\u7c3d\u7d04",159000,"20231004",159000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"20231220",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00796 (2023-12-20\u8ca8\u62b5\u5de5\u5730) ; ",530000,159000],"3MH00550":["3MH00550","M231035","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u6d2a\u5fd7\u8070","","\u53f0\u5357\u5e02\u4ec1\u5fb7\u5340\u592a\u5b50\u8def384\u865f","\u6d2a\u5fd7\u8070","\u7c3d\u7d04",140000,"20230725",140000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",350000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",140000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00550 (2024-12-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,140000],"3MH00534":["3MH00534","M231039","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7389\u660e\u73bb\u7483\u80a1\u4efd\u6709\u9650\u516c\u53f8(\u5289\u6f84\u85dd)","86544571","\u5f70\u5316\u7e23\u9e7f\u6e2f\u93ae\u9e7f\u8349\u8def\u4e8c\u6bb5455\u5df72\u5f0445\u865f","\u7389\u660e\u73bb\u7483\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20230719",159000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"20231101",159000,0,0,1,"-",0,"20231216",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00534 (2023-12-16\u5b89\u88dd\u5b8c\u7562) ; ",530000,318000],"3MH00556":["3MH00556","M231044","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","(\u7c21\u6bd4\u5229\u8fb2\u820d)\u4e09\u661f\u9109\u77f3\u570d\u6bb5\u8fb2264\u5730\u865f","45078426","\u5b9c\u862d\u7e23\u7901\u6eaa\u9109\u8e0f\u8e0f\u4e94\u8def120\u5df736\u5f0430\u865f","\u5927\u667a\u958b\u767c\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",110000,"20230811",110000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00556 (2024-03-22\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,110000],"3MH00503":["3MH00503","M231045","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5bf6\u7965\u71df\u9020\u5ee0\u6709\u9650\u516c\u53f8(\u6797\u6885\u6e05)","19161602","\u53f0\u4e2d\u5e02\u5357\u5c6f\u5340\u5927\u696d\u91cc\u5927\u9032\u8857490\u865f10\u6a13\u4e4b1","\u5bf6\u7965\u71df\u9020\u5ee0\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",168000,"20230712",168000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",168000,"20231117",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",168000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00503 (2023-11-17\u8ca8\u62b5\u5de5\u5730) ; ",560000,168000],"3MH00852":["3MH00852","M231046","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u5341\u65b9\u5efa\u7bc9-\u5ce8\u5d4b\u5341\u65b9\u79aa\u6797","02816753","\u53f0\u5317\u5e02\u5927\u5b89\u5340\u65b0\u751f\u5357\u8def\u4e00\u6bb5103\u5df715\u865f","\u5341\u65b9\u79aa\u6797","\u7c3d\u7d04",128000,"20230920",128000,0,0,2,"\u7c3d\u7d0460\u65e5",336000,"20231119",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",128000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",64000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",64000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00852 (\u5df2\u9054\u4e8c\u6b21\u6b3e\u6536\u6b3e\u689d\u4ef6) ; ",720000,128000],"3MH00976":["3MH00976","M231048","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","56674908","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u5927\u5e84\u91cc5\u913015-8\u865f","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00976 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00975":["3MH00975","M231048","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","56674908","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u5927\u5e84\u91cc5\u913015-8\u865f","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00975 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00974":["3MH00974","M231048","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","56674908","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u5927\u5e84\u91cc5\u913015-8\u865f","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00974 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00973":["3MH00973","M231048","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","56674908","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u5927\u5e84\u91cc5\u913015-8\u865f","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00973 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00972":["3MH00972","M231048","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","56674908","\u82d7\u6817\u7e23\u5f8c\u9f8d\u93ae\u5927\u5e84\u91cc5\u913015-8\u865f","\u5b8f\u6c85\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00972 (2024-04-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MH00512":["3MH00512","M231049","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u9ad8\u6607\u5fb7","","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u4e2d\u83ef\u897f\u8857196\u5df740\u865f6\u6a13\u4e4b1","\u9ad8\u6607\u5fb7","\u7c3d\u7d04",116000,"20230718",116000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",290000,"20231020",290000,0,0,1,"-",0,"20231108",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"20231206",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00512 (2023-12-06\u8a66\u8eca\u5b8c\u7562) ; ",580000,406000],"3MH00511":["3MH00511","M231049","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u9ad8\u6607\u5fb7","","\u53f0\u5357\u5e02\u6c38\u5eb7\u5340\u4e2d\u83ef\u897f\u8857196\u5df740\u865f6\u6a13\u4e4b1","\u9ad8\u6607\u5fb7","\u7c3d\u7d04",116000,"20230718",116000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",290000,"20231020",290000,0,0,1,"-",0,"20231108",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"20231208",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00511 (2023-12-08\u8a66\u8eca\u5b8c\u7562) ; ",580000,406000],"3MH00532":["3MH00532","M231061","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u675c\u4ee3\u66f8\u6797\u8932\u714c\u8fb2\u820d","","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u4e2d\u5c71\u8def\u4e00\u6bb5691\u865f","\u675c\u6587\u4fca","\u7c3d\u7d04",112000,"20230721",112000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",280000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",112000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",56000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00532 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",560000,112000],"3MH00530":["3MH00530","M231067","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5317\u5cb3\u5efa\u8a2d\u7fa9\u6210\u6bb5\u96c6\u5408\u4f4f\u5b85","83595132","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb580\u865f","\u5317\u5cb3\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230831",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00530 (2024-08-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00690":["3MH00690","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00690 (2024-05-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00689":["3MH00689","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00689 (2024-05-02\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00688":["3MH00688","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00688 (2024-04-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00687":["3MH00687","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00687 (2024-04-18\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00686":["3MH00686","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00686 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00685":["3MH00685","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00685 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00684":["3MH00684","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00684 (2024-04-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00683":["3MH00683","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00683 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00682":["3MH00682","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00682 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00681":["3MH00681","M231069","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u7f8e\u6797\u9054\u5efa\u8a2d\u6046\u662510\u6236","54190007","\u5c4f\u6771\u7e23\u6046\u6625\u93ae\u5c71\u8173\u8def37-7\u865f","\u7f8e\u6797\u9054\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230901",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00681 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MH00794":["3MH00794","M231076","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u842c\u660c\u5efa\u8a2d(\u67f3\u5357\u6bb5)","42915322","\u53f0\u5357\u5e02\u65b0\u71df\u5340\u5065\u5eb7\u8def95\u865f","\u842c\u660c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20231004",114000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00794 (2024-06-14T16:15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MH00793":["3MH00793","M231076","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u842c\u660c\u5efa\u8a2d(\u67f3\u5357\u6bb5)","42915322","\u53f0\u5357\u5e02\u65b0\u71df\u5340\u5065\u5eb7\u8def95\u865f","\u842c\u660c\u958b\u767c\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",114000,"20231004",114000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",114000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00793 (2024-06-14T16:15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,114000],"3MH00834":["3MH00834","M231078","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u93ae\u806f\u71df\u9020\u6709\u9650\u516c\u53f8","16412106","\u5f70\u5316\u7e23\u7530\u5c3e\u9109\u67f3\u9cf3\u6751\u6c11\u65cf\u8def2\u6bb5113\u865f2\u6a13","\u93ae\u806f\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",198000,"20230925",198000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00834 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,198000],"3MH00833":["3MH00833","M231078","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u93ae\u806f\u71df\u9020\u6709\u9650\u516c\u53f8","16412106","\u5f70\u5316\u7e23\u7530\u5c3e\u9109\u67f3\u9cf3\u6751\u6c11\u65cf\u8def2\u6bb5113\u865f2\u6a13","\u93ae\u806f\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",198000,"20230925",198000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00833 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,198000],"3MH00513":["3MH00513","M231085","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u6797\u6613\u589e","\u5433\u653f\u5f18","","\u9ad8\u96c4\u5e02\u524d\u93ae\u5340\u6c11\u6b0a\u4e8c\u8def425\u865f","\u5433\u653f\u5f18","\u7c3d\u7d04",106000,"20230529",106000,0,0,6,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"20231128",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00513 (2023-11-28\u8ca8\u62b5\u5de5\u5730) ; ",530000,106000],"3MH00539":["3MH00539","M231097","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u738b\u92d5\u6e05\u4f4f\u5b85\u6848","","\u53f0\u5357\u5e02\u4e2d\u897f\u5340\u4e2d\u83ef\u897f\u8def\u4e8c\u6bb5506\u865f","\u738b\u92d5\u6e05\u4f4f\u5b85\u6848","\u7c3d\u7d04",134000,"20230721",134000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",335000,"20231205",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",134000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",67000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00539 (2023-12-05\u8ca8\u62b5\u5de5\u5730) ; ",670000,134000],"3MW00662":["3MW00662","M231098","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6cf0\u6d32\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","85909968","\u9ad8\u96c4\u5e02\u5de6\u71df\u5340\u7acb\u5927\u8def1\u865f","\u6cf0\u6d32\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20230830",210000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",525000,"20231201",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",105000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00662 (2023-12-01\u8ca8\u62b5\u5de5\u5730) ; ",1050000,210000],"3MH00538":["3MH00538","M231100","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6b63\u8208\u8def122\u865f\u96fb\u68af\u6539\u4fee\u5de5\u7a0b","","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u6b63\u8208\u8def122\u865f","\u6b63\u8208\u8def122\u865f\u96fb\u68af\u6539\u4fee\u5de5\u7a0b","\u7c3d\u7d04",122000,"20230724",122000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",305000,"20231123",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",122000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",61000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00538 (2023-11-23\u8ca8\u62b5\u5de5\u5730) ; ",610000,122000],"3MP01032":["3MP01032","M23110011","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5b6b\u5ba4\u7a7a\u9593","28172355","\u81fa\u5317\u5e02\u5927\u5b89\u5340\u65b0\u751f\u5357\u8def1\u6bb5145\u5df713\u865f1\u6a13","\u5b6b\u5f0f\u7a7a\u9593\u8a2d\u8a08\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca\u5f8c",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP01032 (2024-02-29\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,0],"3MH01030":["3MH01030","M23110052","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5149\u660e\u8def\u4e8c\u6bb5(\u52c7\u4fe1\u5de5\u7a0b\u6709\u9650\u516c\u53f8)","70400795","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u4fdd\u751f\u8def159\u865f1\u6a13","\u52c7\u4fe1\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20231206",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01030 (2024-02-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,0],"3MP01036":["3MP01036","M23110053","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u5bcc\u6607\u8089\u54c1","47651968","\u9ad8\u96c4\u5e02\u9f13\u5c71\u5340\u7f8e\u8853\u6771\u4e00\u8def66\u865f9\u6a13\u4e4b1","\u5bcc\u6607\u8089\u54c1\u4f01\u696d\u884c","\u7c3d\u7d04",156000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",156000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",78000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP01036 (2024-02-25\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",780000,0],"3MH01033":["3MH01033","M23110061","\u6843\u7af9\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u7ae0\u53c8\u4ec1","\u90b1\u9e97\u541b","","\u6843\u5712\u5e02\u4e2d\u58e2\u5340\u838a\u656c\u8def829\u5df743\u865f3\u6a13","\u90b1\u9e97\u541b","\u7c3d\u7d04",174000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",232000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",116000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01033 (2024-06-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",580000,0],"3MP01022":["3MP01022","M23110075","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u90ed\u85dd\u5747(\u4e5d\u5982\u4e8c\u8def)","","\u9ad8\u96c4\u5e02\u4e09\u6c11\u5340\u4e5d\u5982\u4e8c\u8def205\u865f","\u90ed\u85dd\u5747(\u4e5d\u5982\u4e8c\u8def)","\u7c3d\u7d04",136000,"20231205",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",340000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",136000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MP01022 (2024-03-07\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,0],"3MH01020":["3MH01020","M23110090","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u5ddd\u9245\u5efa\u8a2d\u6709\u9650\u516c\u53f8(\u6843\u5712)","28570678","\u6843\u5712\u5e02\u516b\u5fb7\u5340\u529b\u884c\u885739\u865f2\u6a13","\u5ddd\u9245\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",130000,"20231205",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",325000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",130000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",65000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01020 (2024-05-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",650000,0],"3MH01018":["3MH01018","M23110096","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8521\u5f35\u5bf6\u9e1e\u8fb2\u820d","","\u5b9c\u862d\u7e23\u8607\u6fb3\u93ae\u5357\u8208\u8def8\u865f","\u8521\u5f35\u5bf6\u9e1e","\u7c3d\u7d04",110000,"20231204",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",275000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",110000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH01018 (2024-02-26\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,0],"3MQ01021":["3MQ01021","M23110104","\u5317\u5340\u71df\u92b7\u90e8","\u5289\u6c38\u5fb7","\u694a\u52dd\u5b89","\u6fa4\u91cc\u8a2d\u8a08\u5de5\u7a0b\u6709\u9650\u516c\u53f8","94114717","\u81fa\u5317\u5e02\u4e2d\u6b63\u5340\u81e8\u6c82\u885733\u5df728\u865f1\u6a13","\u6fa4\u91cc\u8a2d\u8a08\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20231205",0,0,0,0,"\u7c3d\u7d04\u5f8c60\u5929",240000,"20240203",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",120000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u6210",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MQ01021 (2024-04-03\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",600000,0],"3MW01035":["3MW01035","M23110107","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u8521\u6770\u9321","\u6210\u592a\u6a5f\u68b0","82895998","\u81fa\u5357\u5e02\u5357\u5340\u5357\u90fd\u91cc\u660e\u8208\u8def6\u865f1\u6a13","\u5141\u9686\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",190000,"20231213",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",475000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",190000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW01035 (2024-03-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",950000,0],"3MW00542":["3MW00542","M231108","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u51f1\u9054\u71df\u9020(\u5cf0\u958b\u77e5\u83ef\u5ee0\u623f)","23256799","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u56db\u80b2\u8def107\u865f","\u51f1\u9054\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",174000,"20230808",174000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",435000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",174000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",87000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00542 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",870000,174000],"3MX00543":["3MX00543","M231108","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u51f1\u9054\u71df\u9020(\u5cf0\u958b\u77e5\u83ef\u5ee0\u623f)","23256799","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u56db\u80b2\u8def107\u865f","\u51f1\u9054\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",258000,"20230808",258000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",645000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",258000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",129000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00543 (2024-04-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1290000,258000],"3MW00612":["3MW00612","M231118","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7acb\u5091\u71df\u9020-\u53f0\u4e2d\u592a\u5e73","90398924","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u592a\u548c\u4e00\u8857123\u865f10\u6a13\u4e4b2","\u7acb\u5091\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",285000,"20230811",285000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",285000,"20231208",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",285000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",95000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00612 (2023-12-08\u8ca8\u62b5\u5de5\u5730) ; ",950000,285000],"3MW00613":["3MW00613","M231118","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u7acb\u5091\u71df\u9020-\u53f0\u4e2d\u592a\u5e73","90398924","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u592a\u548c\u4e00\u8857123\u865f10\u6a13\u4e4b2","\u7acb\u5091\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",315000,"20230811",315000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",315000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",105000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00613 (2024-01-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1050000,315000],"3MH00540":["3MH00540","M231124","\u5357\u5340\u71df\u92b7\u90e8","\u5433\u80b2\u5b97","\u675c\u5b5f\u91d7","\u5d27\u672c\u623f\u5730\u958b\u767c(\u82d3\u96c5\u5bee\u6bb5)","83193904","\u9ad8\u96c4\u5e02\u9cf3\u5c71\u5340\u4e09\u8aa0\u8def65\u865f13\u6a13","\u5d27\u672c\u623f\u5730\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20230801",0,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"20231025",0,0,0,1,"-",0,"20231128",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",0,"20231218",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00540 (2023-12-18\u8a66\u8eca\u5b8c\u7562) ; ",0,0],"3MH00535":["3MH00535","M231126","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u8586\u7d89\u5ba4\u5167\u88dd\u4fee\u5de5\u7a0b\u6709\u9650\u516c\u53f8-\u5357\u6295\u8349\u5c6f\u93ae","61943137","\u53f0\u4e2d\u5e02\u5927\u91cc\u5340\u65b0\u4ec1\u4e8c\u885728\u865f2\u6a13","\u8586\u7d89\u5ba4\u5167\u88dd\u4fee\u5de5\u7a0b\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",162000,"20230727",162000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",162000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00535 (2024-01-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,162000],"3MH00618":["3MH00618","M231132","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u826f\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25152637","\u5f70\u5316\u7e23\u5f70\u5316\u5e02\u5411\u967d\u91cc\u5d19\u5e73\u5357\u8def367\u865f4\u6a13","\u826f\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160500,"20230816",160500,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",160500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",160500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00618 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",535000,160500],"3MH00617":["3MH00617","M231132","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u826f\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","25152637","\u5f70\u5316\u7e23\u5f70\u5316\u5e02\u5411\u967d\u91cc\u5d19\u5e73\u5357\u8def367\u865f4\u6a13","\u826f\u965e\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",160500,"20230816",160500,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",160500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",160500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00617 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",535000,160500],"3MH00646":["3MH00646","M231133","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8(\u897f\u5c6f\u5340)","90643617","\u53f0\u4e2d\u5e02\u5317\u5340\u5efa\u6210\u91cc6\u9130\u6771\u6210\u8def47\u5df76\u865f9\u6a13\u4e4b1","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",210000,"20230822",210000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00646 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000,210000],"3MH00645":["3MH00645","M231134","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8(\u5317\u5340)","90643617","\u53f0\u4e2d\u5e02\u5317\u5340\u5efa\u6210\u91cc6\u9130\u6771\u6210\u8def47\u5df76\u865f9\u6a13\u4e4b1","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",175500,"20230823",175500,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",175500,"-",0,0,0,0,"\u5b89\u88dd\u5b8c\u6210",175500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00645 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",585000,175500],"3MH00644":["3MH00644","M231134","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8(\u5317\u5340)","90643617","\u53f0\u4e2d\u5e02\u5317\u5340\u5efa\u6210\u91cc6\u9130\u6771\u6210\u8def47\u5df76\u865f9\u6a13\u4e4b1","\u5f18\u5bac\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",175500,"20230823",175500,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",175500,"-",0,0,0,0,"\u5b89\u88dd\u5b8c\u6210",175500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",58500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00644 (2024-04-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",585000,175500],"3MH00581":["3MH00581","M231135","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ddd\u767c\u71df\u9020(\u53f0\u4e2d\u5317\u5c6f\u6848)","23387265","\u53f0\u4e2d\u5e02\u897f\u5c6f\u5340\u798f\u79d1\u8def362\u5df788\u865f","\u5ddd\u767c\u71df\u9020\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",198000,"20230803",198000,0,0,4,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",198000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",66000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00581 (2024-03-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",660000,198000],"3MH00728":["3MH00728","M231139","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53973474","\u96f2\u6797\u7e23\u6597\u5357\u93ae\u660e\u660c\u91cc\u9686\u660c\u8857101\u5df72\u865f1\u6a13","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230908",153000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00728 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00727":["3MH00727","M231139","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53973474","\u96f2\u6797\u7e23\u6597\u5357\u93ae\u660e\u660c\u91cc\u9686\u660c\u8857101\u5df72\u865f1\u6a13","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230908",153000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00727 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00726":["3MH00726","M231139","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53973474","\u96f2\u6797\u7e23\u6597\u5357\u93ae\u660e\u660c\u91cc\u9686\u660c\u8857101\u5df72\u865f1\u6a13","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230908",153000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00726 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00725":["3MH00725","M231139","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","53973474","\u96f2\u6797\u7e23\u6597\u5357\u93ae\u660e\u660c\u91cc\u9686\u660c\u8857101\u5df72\u865f1\u6a13","\u5ee3\u805a\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230908",153000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00725 (2024-07-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00885":["3MH00885","M231141","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u592a\u79be\u767c\u5efa\u8a2d\u958b\u767c\u4f01\u696d\u6709\u9650\u516c\u53f8","53873572","\u53f0\u4e2d\u5e02\u5357\u5c6f\u5340\u74b0\u4e2d\u8def\u56db\u6bb5259\u865f","\u592a\u79be\u767c\u5efa\u8a2d\u958b\u767c\u4f01\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",0,"20231024",0,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00885 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MW00806":["3MW00806","M231145","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u83ef\u9716\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","28154878","\u53f0\u5317\u5e02\u6587\u5c71\u5340\u7f85\u65af\u798f\u8def6\u6bb5166\u5df710\u865f","\u83ef\u9716\u5efa\u8a2d\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",176000,"20230921",176000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",440000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",176000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",88000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00806 (2024-07-31\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",880000,176000],"3MH00808":["3MH00808","M231148","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8cf4\u5354\u9686(\u90b1\u5c71\u7530\u8fb2\u820d)","","\u5b9c\u862d\u5e02\u7f85\u6771\u93ae\u4e2d\u5c71\u8def2\u6bb5207\u865f","\u8cf4\u5354\u9686","\u7c3d\u7d04",104000,"20231011",104000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00808 (2024-06-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00807":["3MH00807","M231149","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u8cf4\u5354\u9686(\u5289\u5b78\u535a\u8fb2\u820d)","","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u5c71\u8def2\u6bb5207\u865f","\u8cf4\u5354\u9686","\u7c3d\u7d04",108000,"20231011",108000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",108000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",54000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00807 (2024-03-06\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",540000,108000],"3MH00738":["3MH00738","M231150","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u529b\u5927\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","45113492","\u5b9c\u862d\u7e23\u51ac\u5c71\u9109\u67ef\u6797\u4e8c\u8def9\u865f","\u529b\u5927\u958b\u767c\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",104000,"20230914",104000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",540000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00738 (2024-01-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,104000],"3MW00788":["3MW00788","M231151","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u592a\u88d5\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","23861986","\u53f0\u4e2d\u5e02\u897f\u5340\u53f0\u7063\u5927\u9053\u4e8c\u6bb5408\u865f2F","\u592a\u88d5\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",390000,"20230912",390000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",390000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",130000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00788 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",1300000,390000],"3MH00779":["3MH00779","M231153","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u99a8\u76db-\u660e\u5fb7\u5317\u8def","84593935","\u53f0\u4e2d\u5e02\u5927\u58a9\u4e03\u8857141\u865f","\u4e0a\u4e92\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",153000,"20230922",153000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",153000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",51000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00779 (2024-05-14\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,153000],"3MH00778":["3MH00778","M231154","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4e0a\u4e92\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","84593935","\u53f0\u4e2d\u5e02\u5357\u5c6f\u5340\u5927\u58a9\u4e03\u8857141\u865f","\u4e0a\u4e92\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",127500,"20230922",127500,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00778 (2024-08-10T12:00\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,127500],"3MH00777":["3MH00777","M231154","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4e0a\u4e92\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","84593935","\u53f0\u4e2d\u5e02\u5357\u5c6f\u5340\u5927\u58a9\u4e03\u8857141\u865f","\u4e0a\u4e92\u71df\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",127500,"20230922",127500,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",127500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00777 (2024-08-10T12:00\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",510000,127500],"3MH00849":["3MH00849","M231159","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u738b\u6df3\u58d1","","\u96f2\u6797\u7e23\u864e\u5c3e\u93ae\u6210\u5fb7\u4e09\u885751\u865f","\u738b\u6df3\u58d1","\u7c3d\u7d04",210000,"20231024",210000,0,0,1,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",235000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",210000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00849 (2024-04-19\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",725000,210000],"3MH00657":["3MH00657","M231161","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5289\u4fca\u5b8f","","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u7d14\u7cbe\u8def\u4e00\u6bb516\u865f","\u5289\u4fca\u5b8f","\u7c3d\u7d04",104000,"20230824",104000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",260000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",104000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",52000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00657 (2024-05-30\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",520000,104000],"3MH00656":["3MH00656","M231167","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u738b\u95a9\u9706","","\u5b9c\u862d\u7e23\u5b9c\u862d\u5e02\u4e2d\u5c71\u8def\u4e00\u6bb5348\u865f","\u738b\u95a9\u9706","\u7c3d\u7d04",106000,"20230816",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",265000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",106000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00656 (2024-01-17\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00950":["3MH00950","M231168","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u5c71\u672c\u8000(\u912d\u6986\u931a)","","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u5357\u4eac\u8def205\u865f","\u912d\u6986\u931a","\u7c3d\u7d04",240000,"20231123",0,0,0,0,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",240000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",80000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00950 (2024-03-01\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",800000,0],"3MH00596":["3MH00596","M231169","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u912d\u8302\u660c","","\u53f0\u4e2d\u5e02\u6f6d\u5b50\u5340\u4e2d\u5c71\u8def\u4e8c\u6bb5225\u865f","\u912d\u8302\u660c","\u7c3d\u7d04",210000.00000000003,"20230808",210000.00000000003,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",210000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",210000.00000000003,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",70000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00596 (2024-01-16\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",700000.0000000001,210000.00000000003],"3MX00595":["3MX00595","M231169","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u912d\u8302\u660c","","\u53f0\u4e2d\u5e02\u6f6d\u5b50\u5340\u4e2d\u5c71\u8def\u4e8c\u6bb5225\u865f","\u912d\u8302\u660c","\u7c3d\u7d04",0,"20230808",0,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",0,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00595 (2024-02-20\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",0,0],"3MX00619":["3MX00619","M231172","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u4e7e\u5510\u5efa\u8a2d\u6709\u9650\u516c\u53f8","85113700","\u5f70\u5316\u7e23\u5f70\u5316\u5e02\u5411\u967d\u91cc\u5d19\u5e73\u5357\u8def276\u5df718\u865f1\u6a13","\u4e7e\u5510\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",246000,"20230808",246000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",246000,"20231205",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",246000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",82000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MX00619 (2023-12-05\u8ca8\u62b5\u5de5\u5730) ; ",820000,246000],"3MH00643":["3MH00643","M231173","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","45116934","\u96f2\u6797\u7e23\u5317\u6e2f\u93ae\u516c\u5712\u8def337\u865f","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",171000,"20230828",171000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",171000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",171000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",57000.00000000001,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00643 (2023-12-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",570000,171000],"3MH00642":["3MH00642","M231173","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","45116934","\u96f2\u6797\u7e23\u5317\u6e2f\u93ae\u516c\u5712\u8def337\u865f","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230828",165000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00642 (2023-12-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MH00641":["3MH00641","M231173","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","45116934","\u96f2\u6797\u7e23\u5317\u6e2f\u93ae\u516c\u5712\u8def337\u865f","\u539a\u5fb7\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",165000,"20230828",165000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",165000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",55000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00641 (2023-12-27\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",550000,165000],"3MW00703":["3MW00703","M231175","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9806\u767c\u5149\u80fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","42578882","\u96f2\u6797\u7e23\u6597\u516d\u5e02\u93ae\u5357\u91cc\u6b66\u9675\u885783\u865f1\u6a13","\u9806\u767c\u5149\u80fd\u5efa\u8a2d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",276000,"20230902",276000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",276000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",92000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00703 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",920000,276000],"3MH00594":["3MH00594","M231176","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8(\u89c0\u97f3\u6a02\u7fa4\u8857)","69619990","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u60e0\u5dde\u885746\u865f2\u6a13","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230823",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",212000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00594 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00593":["3MH00593","M231176","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8(\u89c0\u97f3\u6a02\u7fa4\u8857)","69619990","\u6843\u5712\u5e02\u5e73\u93ae\u5340\u60e0\u5dde\u885746\u865f2\u6a13","\u5168\u9d3b\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",106000,"20230823",106000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",212000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00593 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",530000,106000],"3MH00555":["3MH00555","M231179","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5fa9\u5b87\u4f01\u696d\u6709\u9650\u516c\u53f8(\u76e7\u5efa\u9686)","23604729","\u65b0\u5317\u5e02\u4e2d\u548c\u5340\u9326\u548c\u8def354\u5df71\u865f1\u6a13","\u5fa9\u5b87\u4f01\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",120000,"20230823",120000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",300000,"20231101",300000,0,0,1,"-",0,"20231202",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",120000,"20231212",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",60000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00555 (2023-12-12\u8a66\u8eca\u5b8c\u7562) ; ",600000,420000],"3MH00640":["3MH00640","M231184","\u4e2d\u5340\u71df\u92b7\u90e8","\u674e\u70d8\u9298","\u8449\u535a\u6f84","\u88d5\u6c11\u5de5\u52d9\u4f01\u696d\u6709\u9650\u516c\u53f8","83215436","\u5f70\u5316\u7e23\u5f70\u5316\u5e02\u88d5\u6c11\u88578\u865f","\u88d5\u6c11\u5de5\u52d9\u4f01\u696d\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",159000,"20230818",159000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",159000,"20231115",0,0,0,0,"-",0,"20231215",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",159000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",53000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00640 (2023-12-15\u5b89\u88dd\u5b8c\u7562) ; ",530000,159000],"3MH00774":["3MH00774","M231202","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u5343\u98a8\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","90525273","\u5b9c\u862d\u7e23\u7f85\u6771\u93ae\u4e2d\u6b63\u5317\u8def77\u865f4F","\u5343\u98a8\u5efa\u8a2d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",139000,"20230925",139000,0,0,2,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",347500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",139000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",69500,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00774 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",695000,139000],"3MH00609":["3MH00609","M231204","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u74b0\u7403\u5efa\u8a2d(\u5927\u798f\u6bb5)","85063531","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u4e8c\u7d50\u8def472\u865f5\u6a13\u4e4b5","\u74b0\u7403\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",144000,"20230814",144000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",360000,"20231019",360000,0,0,1,"-",0,"20231116",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",144000,"20231126",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",72000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00609 (2023-11-26\u8a66\u8eca\u5b8c\u7562) ; ",720000,504000],"3MH00611":["3MH00611","M231205","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u74b0\u7403\u5efa\u8a2d(\u58ef\u570d\u4e2d\u8208\u6bb5)","85063531","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u4e8c\u7d50\u8def472\u865f5\u6a13\u4e4b5","\u74b0\u7403\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",142000,"20230814",142000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",355000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",142000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",71000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00611 (2024-06-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",710000,142000],"3MH00610":["3MH00610","M231205","\u5b9c\u82b1\u6771\u71df\u92b7\u90e8","\u8a31\u745e\u5cb3","\u9673\u5fd7\u6587","\u74b0\u7403\u5efa\u8a2d(\u58ef\u570d\u4e2d\u8208\u6bb5)","85063531","\u5b9c\u862d\u7e23\u4e94\u7d50\u9109\u4e8c\u7d50\u8def472\u865f5\u6a13\u4e4b5","\u74b0\u7403\u5efa\u8a2d\u958b\u767c\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",142000,"20230814",142000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",355000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",142000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",71000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00610 (2024-06-10\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",710000,142000],"3MH00832":["3MH00832","M231212","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u9673\u8587","","\u53f0\u4e2d\u5e02\u5317\u5c6f\u5340\u6587\u5fc3\u8def\u56db\u6bb567\u865f25\u6a13\u4e4b1","\u9673\u8587","\u7c3d\u7d04",204000,"20230824",204000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u5b89\u88dd\u8a66\u8eca",204000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",68000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MH00832 (2024-01-05\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",680000,204000],"3MW00702":["3MW00702","M231218","\u4e2d\u5340\u71df\u92b7\u90e8","\u8521\u5b9a\u61b2","\u674e\u70d8\u9298","\u74bf\u6690\u4f01\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","54582616","\u81fa\u4e2d\u5e02\u5317\u5c6f\u5340\u5ecd\u5b50\u91cc3\u9130\u5efa\u8ecd\u4e8c\u885736\u865f","\u74bf\u6690\u4f01\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8","\u7c3d\u7d04",270000,"20230901",270000,0,0,3,"-",0,"-",0,0,0,0,"\u8ca8\u62b5\u5de5\u5730",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u8a66\u8eca\u5b8c\u5de5",270000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"\u4ea4\u8eca",90000,"-",0,0,0,0,"-",0,"-",0,0,0,0,"3MW00702 (2024-03-15\u9810\u8a08\u51fa\u8ca8\u65e5) ; ",900000,270000]}} \ No newline at end of file +{"Bill":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]} \ No newline at end of file diff --git a/wms/bonus/api/postStatus.php b/wms/bonus/api/postStatus.php new file mode 100644 index 00000000..86f9f88d --- /dev/null +++ b/wms/bonus/api/postStatus.php @@ -0,0 +1,111 @@ +prepare($sql); + $stmt->execute(); + + header("HTTP/1.1 200 success!"); + echo 'Success'; + } catch (PDOException $e) { + header("HTTP/1.1 404 failed!"); + echo $e->getMessage(); + die('Error!:' . $e->getMessage()); + } +} +// 獎金確認發放,並更新獎金 OR 實際發放時間 +if (!empty($_POST['postType']) && $_POST['postType'] == 'b') { + try { + $id = empty($_POST['id']) ? '' : $_POST['id']; + $pay_day = empty($_POST['pay_day']) ? '' : $_POST['pay_day']; + $bonus_actual = empty($_POST['bonus_actual']) ? '' : $_POST['bonus_actual']; + $note = empty($_POST['note']) ? '' : $_POST['note']; + $user_id = empty($_POST['user_id']) ? '' : $_POST['user_id']; + $review_at = date("Y-m-d H:i:s"); + if ($pay_day != '' && $bonus_actual != '') { + $sql = "UPDATE bonus SET status = 2,review_hr='$user_id',review_at='$review_at',bonus_actual='$bonus_actual',pay_day='$pay_day',note='$note' WHERE id = $id"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + header("HTTP/1.1 200 success!"); + } else { + header("HTTP/1.1 400"); + echo '請填寫發放時間和實發獎金'; + } + } catch (PDOException $e) { + header("HTTP/1.1 404 failed!"); + echo $e->getMessage(); + die('Error!:' . $e->getMessage()); + } +} + +// 獎金暫不發放 +if (!empty($_POST['postType']) && $_POST['postType'] == 'c') { + // echo 'cccccc'; + try { + $id = empty($_POST['id']) ? '' : $_POST['id']; + $pay_day = empty($_POST['pay_day']) ? '' : $_POST['pay_day']; + $bonus_actual = empty($_POST['bonus_issue']) ? '' : $_POST['bonus_issue']; + $user_id = empty($_POST['user_id']) ? '' : $_POST['user_id']; + $note = empty($_POST['note']) ? '' : $_POST['note']; + $review_at = date("Y-m-d H:i:s"); + + if ($note != '') { + $sql = "UPDATE bonus SET status = 4,review_hr='$user_id',review_at='$review_at',pay_day='$pay_day',note='$note' WHERE id = $id"; + echo $sql; + $stmt = $conn->prepare($sql); + $stmt->execute(); + header("HTTP/1.1 200 success!"); + } else { + echo '請填寫備註!!'; + header("HTTP/1.1 400!"); + } + } catch (PDOException $e) { + header("HTTP/1.1 404 failed!"); + echo $e->getMessage(); + die('Error!:' . $e->getMessage()); + } +} + +if (!empty($_POST['postType']) && $_POST['postType'] == 'd') { + try { + $id = empty($_POST['id']) ? '' : $_POST['id']; + $review_at = date("Y-m-d H:i:s"); + $user_id = empty($_POST['user_id']) ? '' : $_POST['user_id']; + + $sql = "SELECT * FROM bonus WHERE id IN ($id)"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + $results = $stmt->fetchAll(PDO::FETCH_ASSOC); + + $conn->beginTransaction(); + foreach ($results as $result) { + // echo '
';
+            // print_r($result);
+            // echo '
'; + // exit(); + $amount = $result['amount']; + $id = $result['id']; + $pay_day = $result['pay_day_due']; + + $sql = "UPDATE bonus SET status = 5 ,bonus_actual='$amount',review_hr = '$user_id' ,review_at = '$review_at',pay_day ='$pay_day' WHERE id = $id"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + } + + $conn->commit(); + header("HTTP/1.1 200 success!"); + } catch (PDOException $e) { + $conn->rollBack(); + header("HTTP/1.1 404 failed!"); + echo $e->getMessage(); + die('Error!:' . $e->getMessage()); + } + // echo 'ddddd'; +} diff --git a/wms/bonus/bonus.php b/wms/bonus/bonus.php index eb1959a2..4e0b84fd 100644 --- a/wms/bonus/bonus.php +++ b/wms/bonus/bonus.php @@ -2,7 +2,7 @@ include_once("../header.php"); // require_once('./connT8.php'); require("../contract/conn.php"); - +$now = date("Y-m-d"); $contract_type = [ '1' => '新梯', @@ -15,18 +15,32 @@ $bonus_type = [ '2' => '區經理獎金', '3' => '專任契約經理獎金' ]; + +$bonus_status = [ + '1' => '未確認', + '2' => '應發已確認', + '3' => '應發未確認', + '4' => '暫不發放', + '5' => '人事審核確認' +]; $clause = ''; +if ($user_id != 'M0225') { + $clause .= "AND receiver == '$user_id'"; +} if (!empty($_GET['check'])) { - if ($_GET['check'] == 1) { - $clause .= "AND pay_day > DATE_SUB(NOW(), INTERVAL 1 MONTH)"; + // 人事發放作業,應為一個月內 + if ($_GET['check'] == 4) { + $oneMonthAgo = date("Y-m-d", strtotime("$now +1 months")); + // $clause .= "AND pay_day_due >= '$now' AND pay_day_due <= '$oneMonthAgo' AND status IN (1,2,5)"; + $clause .= "AND status IN (1,2,5)"; } else if ($_GET['check'] == 2) { $clause .= "AND status = 1"; } else if ($_GET['check'] == 3) { - $clause .= "AND status = 2"; + $clause .= "AND status IN (2,5)"; } } -$sql = "SELECT * FROM bonus WHERE 1=1 $clause LIMIT 50"; +$sql = "SELECT * FROM bonus WHERE 1=1 $clause"; $stmt = $conn->prepare($sql); $stmt->execute(); $datas = $stmt->fetchAll(PDO::FETCH_ASSOC); @@ -35,6 +49,13 @@ $datas = $stmt->fetchAll(PDO::FETCH_ASSOC); $now = new DateTime(); $oneMonthAgo = $now->modify('+1 month'); + +$id = []; +foreach ($datas as $data) { + $id[] = $data['id']; +} +$id_str = implode(',', $id); + // 查看 T8 是否有收款明細 // require("./api/get.php"); function isPay($contract_no, $connT8) @@ -98,204 +119,269 @@ function isPay($contract_no, $connT8) -
- - -
- - - - btn-sm categoryBtn"> 所有獎金 - btn-sm categoryBtn"> 應發獎金 - btn-sm categoryBtn"> 未發獎金 - btn-sm categoryBtn"> 已發獎金 - - - - - - - - - - - - - - - - - - - - - - - $data) : - - $contract_no = $data['contract_no']; - $json = json_decode($data['bonus_json']); - - $total = empty($json->total) ? 0 : $json->total; - $fee_per_st = empty($json->fee_per_st) ? 0 : $json->fee_per_st; - $commission_fee = empty($json->commission_fee) ? 0 : $json->commission_fee; - $isPay = isPay($data['contract_no'], $connT8); - - ?> - - - - - - - - - - - - - - - - - - - - -
項次合約類別合約號作番號獎金類別獎金版本作番總價牌價服務費應發人員預計發放時間獎金水庫狀態檢視/發放
- - - - - 發放獎金 - - 查看詳情 - -
+
+
+
+ + btn-sm categoryBtn"> 所有獎金 + + btn-sm categoryBtn"> 未發獎金 + btn-sm categoryBtn"> 已發獎金 + btn-sm categoryBtn"> 人事發放作業 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $data) : + + $contract_no = $data['contract_no']; + $json = json_decode($data['bonus_json']); + $total = empty($json->total) ? 0 : $json->total; + $fee_per_st = empty($json->fee_per_st) ? 0 : $json->fee_per_st; + $commission_fee = empty($json->commission_fee) ? 0 : $json->commission_fee; + // $isPay = isPay($data['contract_no'], $connT8); + + ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
項次合約類別合約號作番號獎金類別獎金版本作番金額(月)牌價服務費應發人員預計發放時間應發獎金水庫實發金額狀態實際發放時間發放 / 詳情詳情
+ + + -- + + + + 查看詳情 + + 查看詳情查看詳情
+
-
- - - - \ No newline at end of file + + + + + \ No newline at end of file diff --git a/wms/bonus/bonus_check.php b/wms/bonus/bonus_check.php new file mode 100644 index 00000000..9a2e5640 --- /dev/null +++ b/wms/bonus/bonus_check.php @@ -0,0 +1,199 @@ +prepare($sql); +$stmt->bindParam(':id', $_GET['id']); +$stmt->execute(); +$result = $stmt->fetch(PDO::FETCH_ASSOC); +// echo '
';
+// print_r($result['bonus_json']);
+// echo '
'; +$bonus_json = json_decode($result['bonus_json']); + +$paykind = [ + 'monthly' => '月繳', + 'bimonthly' => '雙月繳', + 'quarterly' => '季繳', + 'semiannually' => '半年繳', + 'annually' => '年繳' +]; + +$maintain_type = [ + 'new' => '新簽約', + 'free_to_charge' => '免保轉有費', + 'renew_priceissue' => '續簽約' +]; +?> + + + + + + + + + + +
+
+ +
+ + + + + + + + +
+

獎金計算

+
+ + + +
+
+
+ + \ No newline at end of file diff --git a/wms/bonus/bonus_detail.php b/wms/bonus/bonus_detail.php index 93762ac3..93dafa31 100644 --- a/wms/bonus/bonus_detail.php +++ b/wms/bonus/bonus_detail.php @@ -48,17 +48,6 @@ $maintain_type = [ - @@ -145,6 +145,14 @@ $maintain_type = [
+ - - - - - --> - - - 安裝 - 5、安裝完畢款 - - - - - - - - - - - - 6、驗收款 - - - - - - - - - - - - 7、其他 - - - - - - - - - - + + + + + + + 6、驗收款 + + + + + + + + + + + + 7、其他 + + + + + + + + + + - - 合計 - - - - - - - - - - -
- + + 合計 + + + + + + + + + + +
+ - - + + - + - + - + + - \ No newline at end of file diff --git a/wms/contract-repair/js/alpine.js b/wms/contract-repair/js/alpine.js index 43991cca..3d21a269 100644 --- a/wms/contract-repair/js/alpine.js +++ b/wms/contract-repair/js/alpine.js @@ -900,7 +900,13 @@ const bonunsIndex = () => { total: total, fee_per_st: fee_per_st, commission_fee: commission_fee, - discount: discount + discount: discount, + bonus_actual: '', + note: '', + id: id, + // bonus_actual: bonus_actual, + // payDay: payDay, + // note: note }, step: 1, @@ -929,6 +935,9 @@ const bonunsIndex = () => { this.step = 3; s } }, + issue() { + console.log(1233); + }, getContractData() { axios.get('./api/get.php?contract_no=' + this.data.contract_no).then(res => { if (!res.data) { @@ -965,7 +974,39 @@ const bonunsIndex = () => { }, save() { if (this.step == 1) { - window.history.back(); + // window.history.back(); + const form = new FormData(); + form.append('id', this.data.id); + form.append('bonus_actual', this.data.bonus_actual); + form.append('pay_day', this.data.payDay); + form.append('note', this.data.note); + form.append('user_id', this.data.user_id); + form.append('postType', 'b'); + axios.post('./api/postStatus.php', form).then((res) => { + alert('更新成功'); + window.history.go(-1); + + }).catch((err) => { + // alert('更新失敗'); + alert('更新失敗' + err.response.data); + }) + } + }, + stop() { + if (this.step == 1) { + const form = new FormData(); + form.append('id', this.data.id); + form.append('bonus_actual', this.data.bonus_actual); + form.append('pay_day', this.data.payDay); + form.append('note', this.data.note); + form.append('postType', 'c'); + axios.post('./api/postStatus.php', form).then((res) => { + console.log(res); + alert('更新成功'); + window.history.go(-1); + }).catch((err) => { + alert(err.response.data); + }) } }, calBons() { @@ -1001,7 +1042,7 @@ const bonunsIndex = () => { } } -const bonunsIndexTest = () => { +const bonusIndexTest = () => { return { data: { bonus_verson: '2.1', @@ -1028,8 +1069,8 @@ const bonunsIndexTest = () => { step: 1, isLoading: false, fail_arr: [], - test() { - console.log(this.data.paykind); + issue() { + console.log('123'); }, nextStepFn() { if (this.step == 1) { diff --git a/wms/contract-repair/styles/style.css b/wms/contract-repair/styles/style.css index 7cc8f7dd..263ae3cc 100644 --- a/wms/contract-repair/styles/style.css +++ b/wms/contract-repair/styles/style.css @@ -654,7 +654,7 @@ main table th { align-items: center; width: 70px; height: 45px; - font-size: 15px; + font-size: 10px; } .contract-input-component .form table .fixed, .contract-management .form table .fixed, diff --git a/wms/contract-repair/styles/style.scss b/wms/contract-repair/styles/style.scss index 2eabc33d..bd419e02 100644 --- a/wms/contract-repair/styles/style.scss +++ b/wms/contract-repair/styles/style.scss @@ -707,7 +707,7 @@ main { align-items: center; width: 70px; height: 45px; - font-size: 15px; + font-size: 10px; } table { diff --git a/wms/contract/api/T8salIncomeApply.php b/wms/contract/api/T8salIncomeApply.php index 0a3d7698..f419d4d8 100644 --- a/wms/contract/api/T8salIncomeApply.php +++ b/wms/contract/api/T8salIncomeApply.php @@ -3,14 +3,15 @@ require_once("../../T8_Authorization_from_bpm.php"); function T8API($data) { - // echo '
';
-    // print_r(json_encode($data));
-    // echo '
'; $api_url = 'https://erp.masada.com.tw:780/twWebAPI/V1/SALINCOMEAPPLY/PostERPData'; $validation = get_Auth(); + echo '
';
+    print_r(json_encode($data));
+    echo '
'; $header = [ - "CHI_Authorization :" . $validation + "CHI_Authorization :" . $validation, + "GroupId:TEST" ]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $api_url); // 设置请求的URL @@ -20,6 +21,7 @@ function T8API($data) curl_setopt($ch, CURLOPT_POST, 1); // 使用 POST curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data)); $response = curl_exec($ch); + if ($response === false) { echo 'Curl error: ' . curl_error($ch); } else { @@ -32,6 +34,7 @@ function T8API($data) // print_r($result); return $result; } + return $result; } curl_close($ch); diff --git a/wms/contract/api/getComboNo.php b/wms/contract/api/getComboNo.php index c258be15..265d4096 100644 --- a/wms/contract/api/getComboNo.php +++ b/wms/contract/api/getComboNo.php @@ -1,59 +1,62 @@ -'BW002', - 'month'=>'EM002', - 'quarter'=>'EQ002', - 'half'=>'HY002', - 'year'=>'EY002' - ]; - private $bwarr = [ - 'week','month','week','month','week','quarter', - 'week','month','week','month','week','half', - 'week','month','week','month','week','quarter', - 'week','month','week','month','week','year' - ]; - private $emarr = [ - 'month','month','quarter','month','month','half', - 'month','month','quarter','month','month','year' - ]; - private $combo; - private $startdate; - private $enddate; - public function __construct($combo, $startdate, $enddate){ - $this->combo = $combo; - $this->startdate = $startdate; - $this->enddate = $enddate; - } - public function getComboNo(){ - $comboarr = (array) $this->combo === 'bw' ? $this->bwarr : $this->emarr; - - $startdate = new DateTime($this->startdate); - $enddate = new DateTime($this->enddate); - - $interval = date_diff($startdate, $enddate); - - $months = $interval->y * 12 + $interval->m; - $months = $this->combo === 'bw' ? $months*2 : $months; - - $newarr = []; - $idx = 0; - $ori_first_month = date('m', strtotime($this->startdate)); - $first_day = date('Y-m-d', strtotime($this->startdate. ' + 3 days')); - $new_first_month = date('m', strtotime($first_day)); - if($ori_first_month != $new_first_month){ - $first_day = date('Y-m-t', strtotime($this->startdate)); - } - $scheduleDate = new DateTime($first_day); - for ($i = 0; $i < $months; $i++){ - $newarr[] = [$this->comboarr[$comboarr[$idx]], $scheduleDate->format("Y-m-d")]; - $idx ++; - $scheduleDate = $startdate->modify("+1 month"); - if($idx >= count($comboarr)){ - $idx = 0; - } - } - return json_encode($newarr); - } -} \ No newline at end of file + 'BW002', + 'month' => 'EM002', + 'quarter' => 'EQ002', + 'half' => 'HY002', + 'year' => 'EY002' + ]; + private $bwarr = [ + 'week', 'month', 'week', 'month', 'week', 'quarter', + 'week', 'month', 'week', 'month', 'week', 'half', + 'week', 'month', 'week', 'month', 'week', 'quarter', + 'week', 'month', 'week', 'month', 'week', 'year' + ]; + private $emarr = [ + 'month', 'month', 'quarter', 'month', 'month', 'half', + 'month', 'month', 'quarter', 'month', 'month', 'year' + ]; + private $combo; + private $startdate; + private $enddate; + public function __construct($combo, $startdate, $enddate) + { + $this->combo = $combo; + $this->startdate = $startdate; + $this->enddate = $enddate; + } + public function getComboNo() + { + $comboarr = (array) $this->combo === 'bw' ? $this->bwarr : $this->emarr; + + $startdate = new DateTime($this->startdate); + $enddate = new DateTime($this->enddate); + + $interval = date_diff($startdate, $enddate); + + $months = $interval->y * 12 + $interval->m; + $months = $this->combo === 'bw' ? $months * 2 : $months; + + $newarr = []; + $idx = 0; + $ori_first_month = date('m', strtotime($this->startdate)); + $first_day = date('Y-m-d', strtotime($this->startdate . ' + 3 days')); + $new_first_month = date('m', strtotime($first_day)); + if ($ori_first_month != $new_first_month) { + $first_day = date('Y-m-d', strtotime($this->startdate)); + } + $scheduleDate = new DateTime($first_day); + for ($i = 0; $i <= $months; $i++) { + $newarr[] = [$this->comboarr[$comboarr[$idx]], $scheduleDate->format("Y-m-d")]; + $idx++; + $scheduleDate = $scheduleDate->modify("+1 month"); + if ($idx >= count($comboarr)) { + $idx = 0; + } + } + return json_encode($newarr); + } +} diff --git a/wms/contract/api/getContractData.php b/wms/contract/api/getContractData.php index 0f7f89c8..253e8d54 100644 --- a/wms/contract/api/getContractData.php +++ b/wms/contract/api/getContractData.php @@ -1,7 +1,7 @@ -prepare($sql_str); $stmt->bindParam(':vol_no', $contractno); $stmt->execute(); - $contract= $stmt->fetch(PDO::FETCH_ASSOC); + $contract = $stmt->fetch(PDO::FETCH_ASSOC); - if(empty($contract)){ + if (empty($contract)) { echo false; exit; } @@ -21,42 +21,99 @@ if(isset($_GET['contractno']) && $_GET['contractno']!='' && isset($_GET['contrac $stmt = $conn->prepare($sql_str); $stmt->bindParam(':apply_key', $apply_key); $stmt->execute(); - $elevators= $stmt->fetchAll(PDO::FETCH_ASSOC); + $elevators = $stmt->fetchAll(PDO::FETCH_ASSOC); $count = COUNT($elevators); + // foreach ($elevators as $key => $elevator) { + + // $elevator['discount'] = ($elevator['sold_price'] / $elevator['stand_price']) * 100; + // } $contract['elevators'] = $elevators; $contract['num'] = $count; $contractResponse = json_encode($contract); - + // 設定回應標頭為 JSON header('Content-Type: application/json'); - + // 將 JSON 回應返回給客戶端 echo $contractResponse; // echo json_encode($contractResponse); - }catch (PDOException $e ){ - die("ERROR!!!: ". $e->getMessage()); + } catch (PDOException $e) { + die("ERROR!!!: " . $e->getMessage()); } } -if(isset($_GET['contractno']) && $_GET['contractno']!='' && isset($_GET['contracttype']) && $_GET['contracttype']=='m'){ - try{ +if (isset($_GET['contractno']) && $_GET['contractno'] != '' && isset($_GET['contracttype']) && $_GET['contracttype'] == 'm') { + try { $contractno = $_GET['contractno']; - $sql_str = "SELECT * FROM hope_elevator_customer WHERE vol_no = :vol_no ORDER BY created_at DESC"; + $sql_str = "SELECT a.*,b.lm_tel,b.uscc,b.manager,b.linkman FROM pricereview_main AS a + LEFT JOIN hope_elevator_customer AS b ON a.contractno = b.vol_no + WHERE a.contractno = :contractno AND a.status != 'YN' "; $stmt = $conn->prepare($sql_str); - $stmt->bindParam(':vol_no', $contractno); + $stmt->bindParam(':contractno', $contractno); $stmt->execute(); - $contract= $stmt->fetch(PDO::FETCH_ASSOC); + $contract = $stmt->fetch(PDO::FETCH_ASSOC); + + $salesman = $contract['person']; + $sql = "SELECT * FROM account WHERE accountid = :accountid "; + $stmt = $conn->prepare($sql); + $stmt->bindParam(':accountid', $salesman); + $stmt->execute(); + $account_detail = $stmt->fetch(PDO::FETCH_ASSOC); + $contract['manager'] = $account_detail['manager']; + $contract['salesman_departno'] = $account_detail['department_id']; + + + $mid = $contract['id']; + $sql = "SELECT * FROM pricereview_item WHERE mid = :mid AND item_group = 'A' "; + $stmt = $conn->prepare($sql); + $stmt->bindParam(':mid', $mid); + $stmt->execute(); + $results = $stmt->fetchAll(PDO::FETCH_ASSOC); + $elevators_detail_arr = []; + foreach ($results as $keys => $result) { + $note = explode(',', $result['note']); + $result['spec'] = $note[0]; //型號 + $result['person'] = $note[1]; // 人承 + $result['floor'] = $note[2]; // 樓層 + $result['speed'] = $note[3]; // 速度 + for ($i = 0; $i < $result['item_qty']; $i++) { + $result['item_no'] = $i + 1; + array_push($elevators_detail_arr, $result); + } + } + $count = COUNT($elevators_detail_arr); + + $contract['elevators'] = $results; + $contract['elevators_detail_arr'] = $elevators_detail_arr; + $contract['nums'] = $count; + // echo '
';
+        // print_r($contract);
+        // echo '
'; + // exit; $contractResponse = json_encode($contract); - // 設定回應標頭為 JSON header('Content-Type: application/json'); - + // 將 JSON 回應返回給客戶端 echo $contractResponse; - }catch (PDOException $e ){ - die("ERROR!!!: ". $e->getMessage()); + } catch (PDOException $e) { + die("ERROR!!!: " . $e->getMessage()); } } +if (!empty($_GET['contracttype']) && $_GET['contracttype'] == 'accountManger' && !empty($_GET['salesman'])) { + try { + $salesman = $_GET['salesman']; + $sql = "SELECT manager FROM account WHERE accountid = :accountid"; + $stmt = $conn->prepare($sql); + $stmt->bindParam(':accountid', $salesman); + $stmt->execute(); + $result = $stmt->fetch(PDO::FETCH_ASSOC); + header('Content-Type:application/json'); + echo json_encode($result); + } catch (PDOException $e) { + die("ERROR!!!:" . $e->getMessage()); + } +} diff --git a/wms/contract/api/postContractData.php b/wms/contract/api/postContractData.php index 2a9e082c..29038b9f 100644 --- a/wms/contract/api/postContractData.php +++ b/wms/contract/api/postContractData.php @@ -18,7 +18,7 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $phone = !empty($_POST['phone']) ? $_POST['phone'] : null; $email = !empty($_POST['email']) ? $_POST['email'] : null; $mworker = !empty($_POST['mworker']) ? $_POST['mworker'] : null; - $mcycle = !empty($_POST['mcycle']) ? $_POST['mcycle'] : null; + // $mcycle = !empty($_POST['mcycle']) ? $_POST['mcycle'] : null; $salesman = !empty($_POST['salesman']) ? $_POST['salesman'] : null; $contract_begin_date = !empty($_POST['contract_begin_date']) ? $_POST['contract_begin_date'] : null; $contract_end_date = !empty($_POST['contract_end_date']) ? $_POST['contract_end_date'] : null; @@ -35,17 +35,53 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $files = !empty($_FILES['files']) ? $_FILES['files'] : null; $elevators = !empty($_POST['elevators']) ? json_decode($_POST['elevators'], true) : []; $payType = !empty($_POST['payType']) ? $_POST['payType'] : null; + + $sql = "SELECT * FROM account WHERE accountid = '$salesman'"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + $accountData = $stmt->fetch(PDO::FETCH_ASSOC); + + $depId = $accountData['department_id']; // validate + //create facility table + $createFacilityNo = new CreateFacilityNo(); + $dailyNecessities = [ + 'MAE100' => 'X', + 'MAM200' => 'W', + 'MAH100' => 'H', + 'MAQ100' => 'Z', + 'MAF100' => 'F', + 'MAZ100' => 'B', + ]; + + $maintain_times = [ + '1' => 'em', //月保 + '2' => 'bw' // 雙周保 + ]; + $facility_arr = []; + foreach ($elevators as $elevator) { + $facility_arr[] = $dailyNecessities[$elevator['spec']]; + } + echo json_encode($facility_arr); + // 電梯做番號 + $facilityno = $createFacilityNo->makeBFacilityNo("T", $facility_arr, (int)$num); + // if ($user_id == 'M0225') { + // echo '
';
+        //     print_r($facilityno);
+        //     echo '
'; + // exit(); + // } + echo json_encode($facilityno); + /// 獎金計算 $fail_arr = []; if ($contractno === '') return $fail_arr[] = '合約號為必填'; - if ($total_price == '') $fail_arr[] = '合約總價為必填'; if ($vat == '') $fail_arr[] = '統一編號為必填'; if ($mtype == '') $fail_arr[] = '維修型態為必填'; if ($phone == '') $fail_arr[] = '客戶電話為必填'; - if ($email == '') $fail_arr[] = 'Email為必填'; + // if ($email == '') $fail_arr[] = 'Email為必填'; if ($mworker == '') $fail_arr[] = '保養員為必填'; - if ($mcycle == '') $fail_arr[] = '保養頻率為必填'; + // if ($mcycle == '') $fail_arr[] = '保養頻率為必填'; if ($salesman == '') $fail_arr[] = '營業員為必填'; if ($contract_begin_date == '') $fail_arr[] = '合約開始時間為必填'; if ($contract_end_date == '') $fail_arr[] = '合約結束時間為必填'; @@ -63,7 +99,8 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c echo json_encode($fail_arr); exit(); } - + T8insert($_POST, $facilityno, $depId); + bonusCreate($_POST, $facilityno, $conn); //create account table $accounttype = "A"; $accountid = $vat; @@ -75,6 +112,8 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $create_at = date('Y-m-d H:i:s'); $conn->beginTransaction(); + // bonusCreate($_POST, $facilityno, $conn); + // exit(); $sql_str = "INSERT INTO account (accounttype, accountid, pwd, name, tel, address, email, repairerid, creater, create_at) VALUES (:accounttype, :accountid, :pwd, :name, :tel, :address, :email, :repairerid, :creater, :create_at)"; $stmt = $conn->prepare($sql_str); @@ -127,30 +166,35 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $stmt->execute(); //create facility table - $createFacilityNo = new CreateFacilityNo(); - $dailyNecessities = [ - 'MAE100' => 'X', - 'MAM200' => 'W', - 'MAH100' => 'H', - 'MAQ100' => 'Z', - 'MAF100' => 'F', - 'MAZ100' => 'B', - ]; - $facility_arr = []; - foreach ($elevators as $elevator) { - $facility_arr[] = $dailyNecessities[$elevator['spec']]; - } - echo json_encode($facility_arr); - // 電梯做番號 - $facilityno = $createFacilityNo->makeBFacilityNo("T", $facility_arr, (int)$num); - // if ($user_id == 'M0225') { - // echo '
';
-        //     print_r($facilityno);
-        //     echo '
'; - // exit(); + // $createFacilityNo = new CreateFacilityNo(); + // $dailyNecessities = [ + // 'MAE100' => 'X', + // 'MAM200' => 'W', + // 'MAH100' => 'H', + // 'MAQ100' => 'Z', + // 'MAF100' => 'F', + // 'MAZ100' => 'B', + // ]; + + // $maintain_times = [ + // '1' => 'em', //月保 + // '2' => 'bw' // 雙周保 + // ]; + // $facility_arr = []; + // foreach ($elevators as $elevator) { + // $facility_arr[] = $dailyNecessities[$elevator['spec']]; // } - echo json_encode($facilityno); - echo '-------'; + // echo json_encode($facility_arr); + // // 電梯做番號 + // $facilityno = $createFacilityNo->makeBFacilityNo("T", $facility_arr, (int)$num); + // // if ($user_id == 'M0225') { + // // echo '
';
+        // //     print_r($facilityno);
+        // //     echo '
'; + // // exit(); + // // } + // echo json_encode($facilityno); + // echo '-------'; $sql_str = "SELECT accountid, name FROM account WHERE accountid = :accountid"; $stmt = $conn->prepare($sql_str); $stmt->bindParam(':accountid', $mworker); @@ -162,6 +206,12 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $repairerid = $mworker; $repairername = $worker['name']; foreach ($elevators as $idx => $elevator) { + // 民國年轉換西元年 + $ROCuseful_date = $elevator['useful_date']; + $click = explode("-", $ROCuseful_date); + $click[0] = intval($click[0]) + 1911; + $ADuseful_date = implode("-", $click); + $sql_str = "INSERT INTO facility (contractno, define, facilityno, latitude, longitude, customerid, weight, numberofpassenger, numberofstop, numberoffloor, opentype, speed, repairtype, maintainance, facility_kind, address, repairerid, repairername, creater, create_at, area, takecertificatedate, licensedate) VALUES (:contractno, :define, :facilityno, :latitude, :longitude, :customerid, :weight, :numberofpassenger, :numberofstop, :numberoffloor, :opentype, :speed, :repairtype, :maintainance, :facility_kind, :address, :repairerid, :repairername, :creater, :create_at, :area, :takecertificatedate, :licensedate)"; $stmt = $conn->prepare($sql_str); @@ -187,15 +237,17 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $stmt->bindParam(':create_at', $create_at); $stmt->bindParam(':area', $area); $stmt->bindParam(':takecertificatedate', $elevator['takecertificatedate']); - $stmt->bindParam(':licensedate', $elevator['useful_date']); + $stmt->bindParam(':licensedate', $ADuseful_date); $result = $stmt->execute(); } //create schedule table - $comboNo = new CreateComboNo($mcycle, $contract_begin_date, $contract_end_date); - $comboArr = json_decode($comboNo->getComboNo(), true); + // $comboNo = new CreateComboNo($mcycle, $contract_begin_date, $contract_end_date); + // $comboArr = json_decode($comboNo->getComboNo(), true); foreach ($facilityno as $no) { + $comboNo = new CreateComboNo($maintain_times[$elevator['maintain_times']], $contract_begin_date, $contract_end_date); + $comboArr = json_decode($comboNo->getComboNo(), true); foreach ($comboArr as $combo) { $sql_str = 'INSERT INTO schedule (contractno, facilityno, combono, repairerid, repairername, duedate, creater, create_at) VALUES (:contractno, :facilityno, :combono, :repairerid, :repairername, :duedate, :creater, :create_at)'; $stmt = $conn->prepare($sql_str); @@ -218,7 +270,7 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $customer_phone = $phone; $customer_email = $email; $repairman = $mworker; - $cycle = $mcycle; + // $cycle = $mcycle; $contact_person = $partyA; $contact_address = $partyAaddress; $contact_phone = $partyAphone; @@ -285,8 +337,8 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c } else { $files = null; } - $sql_str = "INSERT INTO contract_b_signed_back (contract_no, contract_type, company, customer_no, salesperson, contract_start_date, contract_end_date, total_price,payType, customer_phone, customer_email, repairman, cycle, contact_person, contact_address, contact_phone, contact_email, elevators_number, area, address, files_id, bonus, max_bonus, created_at, created_by) - VALUES (:contract_no, :contract_type, :company, :customer_no, :salesperson, :contract_start_date, :contract_end_date, :total_price, :payType ,:customer_phone, :customer_email, :repairman, :cycle, :contact_person, :contact_address, :contact_phone, :contact_email, :elevators_number, :area, :address, :files_id, :bonus, :max_bonus, :created_at, :created_by)"; + $sql_str = "INSERT INTO contract_b_signed_back (contract_no, contract_type, company, customer_no, salesperson, contract_start_date, contract_end_date, total_price,payType, customer_phone, customer_email, repairman, contact_person, contact_address, contact_phone, contact_email, elevators_number, area, address, files_id, bonus, max_bonus, created_at, created_by) + VALUES (:contract_no, :contract_type, :company, :customer_no, :salesperson, :contract_start_date, :contract_end_date, :total_price, :payType ,:customer_phone, :customer_email, :repairman, :contact_person, :contact_address, :contact_phone, :contact_email, :elevators_number, :area, :address, :files_id, :bonus, :max_bonus, :created_at, :created_by)"; $stmt = $conn->prepare($sql_str); $stmt->bindParam(":contract_no", $contractno); $stmt->bindParam(":contract_type", $contract_type); @@ -299,7 +351,7 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $stmt->bindParam(":customer_phone", $customer_phone); $stmt->bindParam(":customer_email", $customer_email); $stmt->bindParam(":repairman", $repairman); - $stmt->bindParam(":cycle", $cycle); + // $stmt->bindParam(":cycle", $cycle); // 保養頻率在做番上,這邊不 insert。 $stmt->bindParam(":contact_person", $contact_person); $stmt->bindParam(":contact_address", $contact_address); $stmt->bindParam(":contact_phone", $contact_phone); @@ -316,20 +368,9 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c $stmt->execute(); - // $date = date('Y-m-sH-s-i'); - // $createTime = str_replace("-", '', $date); - // $sql = "INSERT INTO comCustomer(BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime)VALUES(:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime)"; - // $stmt = $connT8->prepare($sql); - // $stmt->bindParam(':BizPartnerId', $contractno); - // $stmt->bindParam(':PersonId', $salesman); - // $stmt->bindParam(':CreatorId', $user_id); - // $stmt->bindParam(':InvoiceAddress', $address); - // $stmt->bindParam(':CreateTime', $createTime); - - // $stmt->execute(); - T8insert($_POST, $facilityno); + // T8insert($_POST, $facilityno); - header('Content-Type: application/json'); + // header('Content-Type: application/json'); $jsonData = json_encode($files); $conn->commit(); @@ -341,7 +382,7 @@ if (isset($_POST["contractno"]) && $_POST["contractno"] != "" && isset($_POST['c } }; -function T8insert($data, $facilityno) +function T8insert($data, $facilityno, $depId) { require_once("../connt8.php"); // 引入 T8 API 連線 @@ -362,7 +403,6 @@ function T8insert($data, $facilityno) $elevators = !empty($data['elevators']) ? json_decode($data['elevators'], true) : []; //電梯 $area = !empty($data['area']) ? $data['area'] : null; //縣市 Ex. A->台北 , B-> ..。 $payType = !empty($data['payType']) ? $data['payType'] : null; - $user_id = !empty($_POST['user_id']) ? $_POST['user_id'] : null; @@ -372,9 +412,9 @@ function T8insert($data, $facilityno) $stmt = $conn->prepare($sql); $stmt->bindParam(':BizPartnerId', $contractno); $stmt->execute(); - $result = $stmt->fetchAll(PDO::FETCH_ASSOC); - $date = date('Y-m-sH-s-i'); - $date_1 = date('Y-m-s'); + $result = $stmt->fetch(PDO::FETCH_ASSOC); + $date = date('Y-m-dH-s-i'); + $date_1 = date('Y-m-d'); $createTime = str_replace("-", '', $date); $insertTime = str_replace('-', '', $date_1); $beginDate = str_replace("-", '', $contract_begin_date); @@ -493,12 +533,12 @@ function T8insert($data, $facilityno) // echo '
';
         // print_r($elevator);
         // echo '
'; - + $facility_no = $facilityno[$index]; $sql = "INSERT INTO comMaterial (FOrgid,MaterialId,MaterialTypeId,MaterialCategoryId,CreatorId,CreateTime) VALUES ('1000',:MaterialId,'10','E',:CreatorId,:CreateTime)"; $stmt = $connT8->prepare($sql); - $stmt->bindParam(':MaterialId', $facilityno[$index]); + $stmt->bindParam(':MaterialId', $facility_no); $stmt->bindParam(':CreatorId', $user_id); $stmt->bindParam(':CreateTime', $createTime); $stmt->execute(); @@ -507,7 +547,7 @@ function T8insert($data, $facilityno) (MaterialTypeId,MaterialId,MaterialName,MaterialCategoryId,IsInUsed,UnitId,CreatorId,CreateTime) VALUES ('10',:MaterialId,:MaterialName,'E',1,'SET',:CreatorId,:CreateTime)"; $stmt = $connT8->prepare($sql); - $stmt->bindParam(':MaterialId', $facilityno[$index]); + $stmt->bindParam(':MaterialId', $facility_no); $stmt->bindParam(':MaterialName', $customer); $stmt->bindParam(':CreatorId', $user_id); $stmt->bindParam(':CreateTime', $createTime); @@ -517,7 +557,7 @@ function T8insert($data, $facilityno) (Orgid,MaterialTypeId,MaterialId,CurrId,SUnitId,TaxId,CreatorId,CreateTime) VALUES ('1000','10',:MaterialId,'TWD','SET','ST005',:CreatorId,:CreateTime)"; $stmt = $connT8->prepare($sql); - $stmt->bindParam(':MaterialId', $facilityno[$index]); + $stmt->bindParam(':MaterialId', $facility_no); $stmt->bindParam(':CreatorId', $user_id); $stmt->bindParam(':CreateTime', $createTime); $stmt->execute(); @@ -533,6 +573,9 @@ function T8insert($data, $facilityno) //分幾期 => 總共保養月 / 分期月 $SQuantity = $elevator['maintain_months'] / $IncomeId[$payType]; + $date_1 = getNext25thDate($contract_begin_date); + + // 依每台電梯去加入各個的付款項 for ($i = 0; $i < $IncomeId[$payType]; $i++) { $row++; @@ -547,14 +590,16 @@ function T8insert($data, $facilityno) "RowCode" => $row, "RowNo" => $row, "ItemType" => 1, - "SPrice" => $elevator['sold_price'], + "SPrice" => intval($elevator['sold_price']), "SQuantity" => $SQuantity, "ProjectId" => "$contractno", - "FromSourceTag" => 0, - "CU_MaterialId" => "$facilityno[$index]", - "CU_EstPayDate" => "$payDay" + "CU_MaterialId" => "$facility_no", + "CU_EstPayDate" => intval($payDay) ]; $salIncomeApplyDetail_rows[] = $rows_data; + // echo '
';
+            // print_r($salIncomeApplyDetail_rows);
+            // echo '
'; } } @@ -564,7 +609,7 @@ function T8insert($data, $facilityno) // $insertime = settype($insertTime, 'integer'); $salIncomeApplyMaster_rows = [ "BillNo" => "$contractno", - "BillDate" => $insertTime, + "BillDate" => intval($insertTime), "OrgId" => "1000", "FOrgId" => "1000", "TypeId" => "RAS", @@ -578,7 +623,10 @@ function T8insert($data, $facilityno) "DueToId" => "$contractno", "TaxId" => "ST005", "CompId" => "1001", - "CreatorId" => "$user_id" + "CreatorId" => "$user_id", + "CreateTime" => intval($insertTime), + "DeptId" => "$depId", + "IsPriceWithTax" => 1 ]; $salIncomeApplyMaster = [ @@ -593,6 +641,9 @@ function T8insert($data, $facilityno) $API_body[] = $salIncomeApplyMaster; $API_body[] = $salIncomeApplyDetail; // 呼叫 API + // echo '
';
+    // print_r($API_body);
+    // echo '
'; $result = T8API($API_body); if ($result['Status'] == 'Error' || $result['Status'] == 'Fails') { @@ -601,3 +652,102 @@ function T8insert($data, $facilityno) die('Error!:' . $result['ErrorMsg']); } } + + +function bonusCreate($data, $facilityno, $conn) +{ + try { + require_once("../../bonus/other/maintenance_contract_bonus_v2_1.php"); + $elevators = !empty($_POST['elevators']) ? json_decode($_POST['elevators'], true) : []; + $contract_begin_date = !empty($data['contract_begin_date']) ? $data['contract_begin_date'] : ''; + $salesman = !empty($data['salesman']) ? $data['salesman'] : ''; + $payType = !empty($data['payType']) ? $data['payType'] : ''; + $status = 1; + $bonus_json = []; + $create_id = $data['user_id']; + $create_at = date('Y-m-d'); + $contract_no = !empty($data['contractno']) ? $data['contractno'] : ''; + $contract_kind = 3; + + $payment = [ + 'A40006' => 'annually', //年繳 + 'A40007' => 'quarterly', //季繳 + 'A40004' => 'bimonthly', // 雙月繳 + 'A40005' => 'semiannually', // 半年繳 + 'A40003' => 'monthly' //月繳 + ]; + + $payDay = getNext25thDate($contract_begin_date); + foreach ($elevators as $key => $elevator) { + // print_r($payDay); + // echo '
';
+            // print_r($elevator);
+            // echo '
'; + // exit; + $facility_no = $facilityno[$key]; + $ver = $elevator['bonus_verson']; //獎金版本 + $contract_type = $elevator['contract_type']; //合約類別 + $payment_period = $payment[$payType]; //付款方式 + $elevator_list_price = intval($elevator['stand_price']); //牌價 + $fee_per_st = $elevator['contract_price']; //作翻契約金額 + $commission_fee = $elevator['service_expense']; //服務費(月) + $receivable_date_due = $payDay; //第一筆保養款項收回日 + $sales_id = $salesman; //營業人員 + $discount = $elevator['discount']; + $region_director_id = $elevator['manager']; + $regular_contract_manger_id = !empty($elevator['regular_contract_manger_id']) ? $elevator['regular_contract_manger_id'] : ''; + $results = maintenance_contract_bonus_v2_1($ver, $contract_type, $payment_period, $elevator_list_price, $fee_per_st, $commission_fee, $receivable_date_due, $sales_id, $region_director_id, $regular_contract_manger_id); + + $bonus_json = [ + 'contract_type' => $contract_type, + 'total' => $elevator_list_price, + 'fee_per_st' => $fee_per_st, + 'commission_fee' => $commission_fee, + 'paykind' => $payment_period, + 'receivable_date_due' => $receivable_date_due, + 'discount' => $discount + ]; + if ($results['result_status'] != 'error') { + foreach ($results['bonus_array'] as $i => $result) { + + $bonus_type = $result['bonus_type']; + $pay_day = $result['pay_day_due']; + $amount = $result['bonus_amount']; + $receiver = $result['bonus_receiver']; + $a = json_encode($bonus_json); + $sql = "INSERT INTO bonus + (bonus_type,bonus_verson,contract_no,contract_type,facility_no,amount,receiver,pay_day_due,status,bonus_json,create_id,create_at) VALUES + ($bonus_type,'$ver','$contract_no',$contract_kind,'$facility_no',$amount,'$receiver','$pay_day',$status,'$a','$create_id','$create_at')"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + } + } + } + // exit(); + } catch (PDOException $e) { + http_response_code(404); + echo $e->getMessage(); + die('Error!:' . $e->getMessage()); + } +} + +// 計算保養開始日期的當月25號 +function getNext25thDate($dateString) +{ + // 將傳入的日期字串轉換成 Unix 時間戳記 + $timestamp = strtotime($dateString); + + // 取得該日期的日期 + $day = date('d', $timestamp); + + // 如果日期大於 25,則回傳下個月的 25 號日期 + if ($day > 25) { + // 增加一個月 + $timestamp = strtotime('+1 month', $timestamp); + } + + // 設定日期為 25 號 + $targetDate = date('Y-m-25', $timestamp); + + return $targetDate; +} diff --git a/wms/contract/api/postNewContractData.php b/wms/contract/api/postNewContractData.php index 001fe1f5..d94dac12 100644 --- a/wms/contract/api/postNewContractData.php +++ b/wms/contract/api/postNewContractData.php @@ -1,139 +1,325 @@ - 0) { - header("HTTP/1.1 422 Unprocessable Entity"); - echo json_encode($fail_arr); - exit(); - } - - - $conn->beginTransaction(); - - $sql_str = "SELECT accountid, name FROM account WHERE accountid = :accountid ORDER BY create_at DESC"; - $stmt = $conn -> prepare($sql_str); - $stmt -> bindParam(":accountid",$salesman); - $stmt -> execute(); - $saleman = $stmt->fetch(PDO::FETCH_ASSOC); - $salesman_name = $saleman['name']; - if(!empty($files)){ - $englisharr = range('a', 'z'); - $files = $_FILES['files']; - $newfiles = []; - foreach( $files as $file ){ - $i = 0; //新陣列的索引編號 - foreach( $file as $key => $val ){ - $newfiles[$i]['name'] = $files['name'][$key]; - $newfiles[$i]['type'] = $files['type'][$key]; - $newfiles[$i]['tmp_name'] = $files['tmp_name'][$key]; - $newfiles[$i]['error'] = $files['error'][$key]; - $newfiles[$i]['size'] = $files['size'][$key]; - $i++; - } //foreach 第2層 end - } - $max_size = 4096*4096; //設定允許上傳檔案容量的最大值(1M) - $allow_ext = array('jpeg', 'jpg', 'png','JPG','JPEG','PNG','GIF'); //設定允許上傳檔案的類型 - $path = '../images/contracts/'; - if (!file_exists($path)) { mkdir($path); } - $msg_result = ''; //負責接收所有檔案檢測後的回傳訊息 - $datetime = (string)date('YmdHis'); - $files_id = 'm' . $datetime; // 保養=>b + 日期時間 - foreach( $newfiles as $key => $file ){ - $randNum = rand(1000,9999); - $randEnglish = $englisharr[rand(0,25)]; - $file_name = 'm' . (string)date('YmdHis') . $randNum . $randEnglish . $randNum.$file['name']; - $msg = upload_chk( $file,$path, $max_size, $allow_ext, $file_name ); - if($msg==1){ - $msg = '檔案傳送成功!'; - $sql_str = "INSERT INTO contract_back_files (files_id, file_name, file_mime, file_size, created_at, created_by) VALUES (:files_id, :file_name, :file_mime, :file_size, :created_at, :created_by)"; - $stmt = $conn -> prepare($sql_str); - $stmt -> bindParam(':files_id' ,$files_id); - $stmt -> bindParam(':file_name' ,$file_name); - $stmt -> bindParam(':file_mime' ,$file['type']); - $stmt -> bindParam(':file_size' ,$file['size']); - $stmt -> bindParam(':created_at' ,$created_at); - $stmt -> bindParam(':created_by' ,$created_by); - $stmt ->execute(); - }else{ - throw new PDOException('檔案上傳失敗:' . $msg); - } - $msg_result .= '第' . ($key+1) . '個上傳檔案的結果:' . $msg . '
'; - $src_name = $path.$file['name']; - if( file_exists($src_name) ){ - //副檔名 - $extname = pathinfo($src_name, PATHINFO_EXTENSION); - //主檔名 - $basename = basename($src_name, '.'.$extname); - } - } - }else{ - $files = null; - } - - $sql_str = "INSERT INTO contract_m_signed_back (contract_no, customer, manager, vat, case_name, linkman, lm_tel, address, salesman, salesman_name, files_id, created_at, created_by, qc_official_type) VALUES (:contract_no, :customer, :manager, :vat, :case_name, :linkman, :lm_tel, :address, :salesman, :salesman_name, :files_id, :created_at, :created_by, :qc)"; - $stmt = $conn -> prepare($sql_str); - $stmt -> bindParam(":contract_no",$contractno); - $stmt -> bindParam(":customer",$customer); - $stmt -> bindParam(":manager",$manager); - $stmt -> bindParam(":vat",$vat); - $stmt -> bindParam(":case_name",$case_name); - $stmt -> bindParam(":linkman",$linkman); - $stmt -> bindParam(":lm_tel",$lm_tel); - $stmt -> bindParam(":address",$address); - $stmt -> bindParam(":salesman",$salesman); - $stmt -> bindParam(":salesman_name",$salesman_name); - $stmt -> bindParam(":files_id",$files_id); - $stmt -> bindParam(":created_at",$created_at); - $stmt -> bindParam(":created_by",$created_by); - $stmt -> bindParam(":qc",$qc); - $stmt -> execute(); - - - $result = $conn->commit(); - if($result){ - header("HTTP/1.1 201 Created"); - } - - }catch(PDOException $e){ - $conn->rollback(); - header("HTTP/1.1 500 Internal Server Error"); - die('Error!:'.$e->getMessage()); - } - } \ No newline at end of file +'; + // print_r($elevators); + // echo ''; + // exit; + $files = !empty($_FILES['files']) ? $_FILES['files'] : null; + $files_id = null; + + $fail_arr = []; + if (empty($contractno)) $fail_arr[] = '合約號為必填'; + if (empty($customer)) $fail_arr[] = '客戶名稱為必填'; + if (empty($manager)) $fail_arr[] = '負責人為必填'; + if (empty($vat)) $fail_arr[] = '統編/身分證為必填'; + if (empty($case_name)) $fail_arr[] = '案名為必填'; + if (empty($linkman)) $fail_arr[] = '聯絡人為必填'; + if (empty($lm_tel)) $fail_arr[] = '聯絡人電話為必填'; + if (empty($address)) $fail_arr[] = '地址為必填'; + if (empty($salesman)) $fail_arr[] = '營業員為必填'; + if (empty($qc)) $fail_arr[] = '請選擇QC或官檢'; + if (count($fail_arr) > 0) { + header("HTTP/1.1 422 Unprocessable Entity"); + echo json_encode($fail_arr); + exit(); + } + //create facility table + $createFacilityNo = new CreateFacilityNo(); + $dailyNecessities = [ + 'MAE100' => 'X', + 'MAM200' => 'W', + 'MAH100' => 'H', + 'MAQ100' => 'Z', + 'MAF100' => 'F', + 'MAZ100' => 'B', + ]; + $arr = []; + // 建立作番號 + foreach ($elevators_detail_arr as $elevator) { + // $spec = explode('-', $elevator['item_spec']); + $arr[] = $dailyNecessities[$elevator['spec']]; + } + $facilityno = $createFacilityNo->makeMFacilityNo('M', $arr, intval($elevators_nums)); + echo '
';
+    print_r($facilityno);
+    echo '
'; + exit(); + $conn->beginTransaction(); + + $sql_str = "SELECT accountid, name FROM account WHERE accountid = :accountid ORDER BY create_at DESC"; + $stmt = $conn->prepare($sql_str); + $stmt->bindParam(":accountid", $salesman); + $stmt->execute(); + $saleman = $stmt->fetch(PDO::FETCH_ASSOC); + $salesman_name = $saleman['name']; + if (!empty($files)) { + $englisharr = range('a', 'z'); + $files = $_FILES['files']; + $newfiles = []; + foreach ($files as $file) { + $i = 0; //新陣列的索引編號 + foreach ($file as $key => $val) { + $newfiles[$i]['name'] = $files['name'][$key]; + $newfiles[$i]['type'] = $files['type'][$key]; + $newfiles[$i]['tmp_name'] = $files['tmp_name'][$key]; + $newfiles[$i]['error'] = $files['error'][$key]; + $newfiles[$i]['size'] = $files['size'][$key]; + $i++; + } //foreach 第2層 end + } + $max_size = 4096 * 4096; //設定允許上傳檔案容量的最大值(1M) + $allow_ext = array('jpeg', 'jpg', 'png', 'JPG', 'JPEG', 'PNG', 'GIF'); //設定允許上傳檔案的類型 + $path = '../images/contracts/'; + if (!file_exists($path)) { + mkdir($path); + } + $msg_result = ''; //負責接收所有檔案檢測後的回傳訊息 + $datetime = (string)date('YmdHis'); + $files_id = 'm' . $datetime; // 保養=>b + 日期時間 + foreach ($newfiles as $key => $file) { + $randNum = rand(1000, 9999); + $randEnglish = $englisharr[rand(0, 25)]; + $file_name = 'm' . (string)date('YmdHis') . $randNum . $randEnglish . $randNum . $file['name']; + $msg = upload_chk($file, $path, $max_size, $allow_ext, $file_name); + if ($msg == 1) { + $msg = '檔案傳送成功!'; + $sql_str = "INSERT INTO contract_back_files (files_id, file_name, file_mime, file_size, created_at, created_by) VALUES (:files_id, :file_name, :file_mime, :file_size, :created_at, :created_by)"; + $stmt = $conn->prepare($sql_str); + $stmt->bindParam(':files_id', $files_id); + $stmt->bindParam(':file_name', $file_name); + $stmt->bindParam(':file_mime', $file['type']); + $stmt->bindParam(':file_size', $file['size']); + $stmt->bindParam(':created_at', $created_at); + $stmt->bindParam(':created_by', $created_by); + $stmt->execute(); + } else { + throw new PDOException('檔案上傳失敗:' . $msg); + } + $msg_result .= '第' . ($key + 1) . '個上傳檔案的結果:' . $msg . '
'; + $src_name = $path . $file['name']; + if (file_exists($src_name)) { + //副檔名 + $extname = pathinfo($src_name, PATHINFO_EXTENSION); + //主檔名 + $basename = basename($src_name, '.' . $extname); + } + } + } else { + $files = null; + } + + $sql_str = "INSERT INTO contract_m_signed_back (contract_no, customer, manager, vat, case_name, linkman, lm_tel, address, salesman, salesman_name, files_id, created_at, created_by, qc_official_type) VALUES (:contract_no, :customer, :manager, :vat, :case_name, :linkman, :lm_tel, :address, :salesman, :salesman_name, :files_id, :created_at, :created_by, :qc)"; + $stmt = $conn->prepare($sql_str); + $stmt->bindParam(":contract_no", $contractno); + $stmt->bindParam(":customer", $customer); + $stmt->bindParam(":manager", $manager); + $stmt->bindParam(":vat", $vat); + $stmt->bindParam(":case_name", $case_name); + $stmt->bindParam(":linkman", $linkman); + $stmt->bindParam(":lm_tel", $lm_tel); + $stmt->bindParam(":address", $address); + $stmt->bindParam(":salesman", $salesman); + $stmt->bindParam(":salesman_name", $salesman_name); + $stmt->bindParam(":files_id", $files_id); + $stmt->bindParam(":created_at", $created_at); + $stmt->bindParam(":created_by", $created_by); + $stmt->bindParam(":qc", $qc); + $stmt->execute(); + + + $result = $conn->commit(); + if ($result) { + header("HTTP/1.1 201 Created"); + } + } catch (PDOException $e) { + $conn->rollback(); + header("HTTP/1.1 500 Internal Server Error"); + die('Error!:' . $e->getMessage()); + } +} + +function T8Insert($data) +{ + require_once("../connt8.php"); + + $contractno = $data['contractno']; + $partyA = $data['customer']; + $phone = $data['lm_tel']; + $vat = $data['vat']; + $partyAaddress = $data['address']; + $user_id = $data['user_id']; + $salesman = $data['salesman']; + $createAt = date("Y-m-dH-i-s"); + $elevators[] = $data['elevators']; + $createTime = str_replace('-', '', $createAt); + + + $connT8->beginTransaction(); + + $sql = "SELECT * FROM comCustomer WHERE BizPartnerId = :BizPartnerId"; + $stmt = $conn->prepare($sql); + $stmt->bindParam(':BizPartnerId', $contractno); + $stmt->execute(); + $result = $stmt->fetch(PDO::FETCH_ASSOC); + // 新增客戶 table + if (empty($result)) { + // 若 客戶資料為空,新增一筆到 comCustomer + // 新增客戶資料 + $sql = "INSERT INTO comBusinessPartner + (BizPartnerId,BizPartnerName,BusinessAttr,CountryId,WorkTelNo,BizToDate,TaxNo,EnterpriseName,ContactAddress,EMail,CreatorId,CreateTime,BizPartnerTypeId) + VALUES(:BizPartnerId,:BizPartnerName,1,'TW',:WorkTelNo,99999999,:TaxNo,:EnterpriseName,:ContactAddress,:EMail,:CreatorId,:CreateTime,'10')"; + $stmt = $connT8->prepare($sql); + $stmt->bindParam(':BizPartnerId', $contractno); + $stmt->bindParam(':BizPartnerName', $partyA); //客戶名稱 + $stmt->bindParam(':WorkTelNo', $phone); + $stmt->bindParam(':TaxNo', $vat); + // $stmt->bindParam(':EnterpriseName', $customer); //企業名稱 + $stmt->bindParam(':ContactAddress', $partyAaddress); + $stmt->bindParam(':EMail', $email); + $stmt->bindParam(':CreatorId', $user_id); + $stmt->bindParam(':CreateTime', $createTime); + + $stmt->execute(); + + $sql = "INSERT INTO comCustomer + (OrgId,BizPartnerTypeId,CurrId,BizPartnerId,PersonId,CreatorId,IsInUsed,InvoiceAddress,CreateTime,InvoiceId) + VALUES('1000','10','TWD',:BizPartnerId,:PersonId,:CreatorId,1,:InvoiceAddress,:CreateTime,'35')"; + $stmt = $connT8->prepare($sql); + + $stmt->bindParam(':BizPartnerId', $contractno); + $stmt->bindParam(':PersonId', $salesman); + $stmt->bindParam(':CreatorId', $user_id); + $stmt->bindParam(':InvoiceAddress', $address); + $stmt->bindParam(':CreateTime', $createTime); + + $stmt->execute(); + } else { + // // 若客戶資料不為空,更新該客戶資訊。 + $sql = "UPDATE comCustomer SET + PersonId=:PersonId, + InvoiceAddress=:InvoiceAddress, + LastOperatorId=:LastOperatorId, + LastOperateTime=:LastOperateTime + WHERE BizPartnerId=:BizPartnerId + "; + $stmt = $connT8->prepare($sql); + $stmt->bindParam(':PersonId', $salesman); + $stmt->bindParam(':InvoiceAddress', $address); + $stmt->bindParam(':LastOperatorId', $user_id); + $stmt->bindParam(':LastOperateTime', $createTime); + $stmt->bindParam(':BizPartnerId', $contractno); + $stmt->execute(); + + + $sql = "UPDATE comBusinessPartner SET + BizPartnerName=:BizPartnerName, + WorkTelNo=:WorkTelNo, + TaxNo=:TaxNo, + EnterpriseName=:EnterpriseName, + ContactAddress=:ContactAddress, + EMail=:EMail, + LastOperatorId=:LastOperatorId, + LastOperateTime=:LastOperateTime + WHERE BizPartnerId = :BizPartnerId + "; + $stmt = $connT8->prepare($sql); + $stmt->bindParam(':BizPartnerName', $partyA); + $stmt->bindParam(':WorkTelNo', $phone); + $stmt->bindParam(':TaxNo', $vat); + $stmt->bindParam(':EnterpriseName', $customer); + $stmt->bindParam(':ContactAddress', $partyAaddress); + $stmt->bindParam(':EMail', $email); + $stmt->bindParam(':LastOperatorId', $user_id); + $stmt->bindParam(':LastOperateTime', $createTime); + $stmt->bindParam(':BizPartnerId', $contractno); + $stmt->execute(); + } + + $sql = "SELECT * FROM comProject WHERE ProjectId = :ProjectId"; + $stmt = $connT8->prepare($sql); + $stmt->bindParam(':ProjectId', $contractno); + $stmt->execute(); + $resultProject = $stmt->fetchAll(PDO::FETCH_ASSOC); + if (empty($resultProject)) { + //新增於 comProject。合約 table + $sql = "INSERT INTO comProject(ProjectId,ProjectName,TypeId,CreateTime,CreatorId,IsInUsed) + VALUES(:ProjectId,:ProjectName,'C0',:CreateTime,:CreatorId,1)"; + $stmt = $connT8->prepare($sql); + $stmt->bindParam(':ProjectId', $contractno); + $stmt->bindParam(':ProjectName', $customer); + $stmt->bindParam(':CreateTime', $createTime); + $stmt->bindParam(':CreatorId', $user_id); + $stmt->execute(); + } +} + + +function BounsCount($data, $conn) +{ + // echo '
';
+  // print_r($data);
+  // echo '
'; + // exit; + require_once("../../bonus/elevator_new/elevator_new_deal_bonus.php"); + $signing_date = $data['signing_date']; + $bonus_v1_0_date = '2024-01-02'; + $bonus_v2_0_date = '2024-01-03'; + $contractType = [ + '1' => 'strategy_customer', + '2' => 'general_customer' + ]; + $contract_type = $data['contract_type']; + + $type = $contractType[$contract_type]; //戰略客戶 or 一般客戶 + $elevator_knockdown_price = $data['price_total']; //受價總額 + + $salesman = $data['salesman']; + $manager = $data['manager']; + + $result_bonus = []; + if ($signing_date <= $bonus_v1_0_date) { + $ver = '1.0'; + $result_bonus = elevator_new_deal_bonus_v1_0($ver, $type, $elevator_knockdown_price, $salesman, $manager); + } else if ($signing_date >= $bonus_v2_0_date) { + $ver = '2.0'; + // $result_bonus = elevator_new_deal_bonus_v2_0($ver,$contract_type,); + } + + echo '
';
+  print_r($result_bonus);
+  echo '
'; + exit(); + try { + } catch (PDOException $e) { + header("HTTP/1.1 500 Internal Server Error"); + die('Error!:' . $e->getMessage()); + } +} diff --git a/wms/contract/api/testT8API.php b/wms/contract/api/testT8API.php index 59730e98..9512cbc8 100644 --- a/wms/contract/api/testT8API.php +++ b/wms/contract/api/testT8API.php @@ -1,21 +1,36 @@ '; -// print_r($countDay); -// echo ''; -// exit(); -$SQuantity = 2; -// $b = 24 / $a; -for ($i = 0; $i < 12; $i++) { - $paymonth = $i * $SQuantity; - $countDay = date('Y-m-d', strtotime("$date + $paymonth months")); - $payDay = str_replace('-', '', $countDay); - echo '
';
-    print_r($payDay);
-    echo '
'; -} +?> + + + 地址轉經緯度 + + + + +

輸入地址以獲取經緯度

+
+ + +
+
+ + + \ No newline at end of file diff --git a/wms/contract/conn.php b/wms/contract/conn.php index a795b27c..ed80762b 100644 --- a/wms/contract/conn.php +++ b/wms/contract/conn.php @@ -34,7 +34,7 @@ try { //設定主動以警告的形式報錯 $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - $connT8 = new PDO("sqlsrv:Server=220.130.203.251;Database=T8masada", "M0225", "IFFBU1E="); + $connT8 = new PDO("sqlsrv:Server=220.130.203.251;Database=T8TEST", "M0225", "IFFBU1E="); if ($connT8) { $connT8->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } diff --git a/wms/contract/contract-input.php b/wms/contract/contract-input.php index d3fdeacd..114cea2f 100644 --- a/wms/contract/contract-input.php +++ b/wms/contract/contract-input.php @@ -136,7 +136,7 @@ $contractpersons = $stmt->fetchAll(PDO::FETCH_ASSOC);

未填寫

- 保養頻率 + + 分期方式 + + +

未填寫

@@ -184,21 +196,13 @@ $contractpersons = $stmt->fetchAll(PDO::FETCH_ASSOC);

未填寫

- 分期方式 + 附件 - -

未填寫

+ - + + + - - - + - +
+
+
+ + + + + + + + + + + + + + + + + + +
收入代碼收入名稱數量單價金額(未稅)稅金含稅金額專案代碼作番號預計請款日
+
+
+
+ + + +
+
+ + + + + + + + + + + + + +
+

保養合約管理

+
合約號 + + + +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
營業人員/契約人員部門合約號單據號客戶名稱單據日期最後收款日追蹤狀態金額明細
+ "; + echo $row['PersonName']; + ?> + + + + + + + + + + + + + + diff($date2); + $months = $interval->m; + $months += $interval->y * 12; + if ($date1 <= $date2) { + echo "合約已過期"; + } else if ($months <= 2) { + echo "合約快到期"; + } else { + echo "合約未到期"; + } + ?> + + + + +
+
+ +There is no record!"; +endif; + +#代表結束連線 +mysqli_close($link); + +include "footer.php"; +?> \ No newline at end of file diff --git a/wms/crm/crmm02-index.php b/wms/crm/crmm02-index.php index 297445e7..fc7646f6 100644 --- a/wms/crm/crmm02-index.php +++ b/wms/crm/crmm02-index.php @@ -170,7 +170,7 @@ if ($data) : - + 轉價審 diff --git a/wms/crm/crmm03-edit.php b/wms/crm/crmm03-edit.php index 0c151755..3f64a37e 100644 --- a/wms/crm/crmm03-edit.php +++ b/wms/crm/crmm03-edit.php @@ -348,7 +348,7 @@ function get_sequnece_no($seq_name = '', $p_yyyymm = '') -
+ +
diff --git a/wms/crm/crmm04-edit.php b/wms/crm/crmm04-edit.php index 13e20ab7..98f2ff96 100644 --- a/wms/crm/crmm04-edit.php +++ b/wms/crm/crmm04-edit.php @@ -98,7 +98,7 @@ $hope_project_elevator_spec_columm = [ //'weight' => ['label' => "載重(KG)", "tag" => 'number', 'attr' => ['name' => 'weight[]', 'gt=0', 'min=0', 'required', 'class' => 'form-control form-control-sm']], 'stop' => ['label' => "停數", "tag" => 'number', 'attr' => ['name' => 'stop[]', 'min=0', 'class' => 'form-control form-control-sm']], 'open' => ['label' => "開門方式", "tag" => 'select', 'attr' => ['colspan' => 2, 'name' => 'open[]', 'class' => 'form-control form-control-sm'], 'options' => $open_kind_opt], - 'speed' => ['label' => "速度(m/min)", "tag" => 'select', 'attr' => ['name' => 'speed[]', 'class' => 'form-control form-control-sm'],'options' => $speed_opt], + 'speed' => ['label' => "速度(m/min)", "tag" => 'select', 'attr' => ['name' => 'speed[]', 'class' => 'form-control form-control-sm'], 'options' => $speed_opt], 'spec_num' => ['label' => "數量", "tag" => 'digits', 'attr' => ['name' => 'spec_num[]', 'min=0', 'class' => 'form-control form-control-sm']], 'spec_price' => ['label' => "單價", "tag" => 'number', 'attr' => ['name' => 'spec_price[]', 'min=0', 'class' => 'form-control form-control-sm']], @@ -204,14 +204,14 @@ function base_url($url) "indent | alignleft center alignright justify | undo redo | " }); - $('#cmecTbody').on('click', 'input[name^=spec_num]', function(){ - $(this).unbind().keyup(function(){ + $('#cmecTbody').on('click', 'input[name^=spec_num]', function() { + $(this).unbind().keyup(function() { $(this).val($(this).val().replace(/\D/g, "").replace(/\B(?=(\d{3})+(?!\d))/g, ",")); sumNum(); }); }); - $('#is_renovation').change(function(){ + $('#is_renovation').change(function() { console.log($(this).val()); }); @@ -220,8 +220,8 @@ function base_url($url) }); sumNum = function() { var numAll = 0; - $("input[name^=spec_num]").each(function(){ - numAll += Number($(this).val().replace(/[,]+/g,"")); + $("input[name^=spec_num]").each(function() { + numAll += Number($(this).val().replace(/[,]+/g, "")); }); $('#num').val(numAll); } @@ -295,7 +295,7 @@ function base_url($url) } selectHpeoRow = function(obj) { - var id = $(obj).parent().parent().find('td:nth-child(1)>div').text(); + var id = $(obj).parent().parent().find('td:nth-child(1)>div').text(); var spec = $(obj).parent().parent().find('td:nth-child(2)>div').text(); var memo = $(obj).parent().parent().find('td:nth-child(3)>div').text(); var optional = $(obj).parent().parent().find('td:nth-child(4)>div').text(); @@ -307,13 +307,13 @@ function base_url($url) //').last() var tr = $('#hpeoTbody tr').last(); $(tr).children('td').each(function(i) { - $(this).find("input[name^='id']").val(id.trim()); + $(this).find("input[name^='id']").val(id.trim()); $(this).find("input[name^='spec']").val(spec.trim()); $(this).find("input[name^='memo']").val(memo.trim()); $(this).find("input[name^='optional']").val(optional.trim()); $(this).find("input[name^='unit']").val(unit.trim()); $(this).find("input[name^='price']").val(price.trim()); - + }); } @@ -333,7 +333,7 @@ function base_url($url)
-

有望客戶()訂正

+

有望客戶()訂正

@@ -381,7 +381,7 @@ function base_url($url)
-
+ +
diff --git a/wms/fun_global.php b/wms/fun_global.php index a72e476c..d12f1bfd 100644 --- a/wms/fun_global.php +++ b/wms/fun_global.php @@ -14,7 +14,7 @@ function sql_myself($user_id, $column = "creater") global $link; $follower_arr = []; // 下屬列表 - if($user_id == 'M0105'){ + if ($user_id == 'M0105') { $user_id = "M0137"; } $sql_cmd = "where ($column = '$user_id'"; diff --git a/wms/mkt/assets/js/pricereviewAlpine.js b/wms/mkt/assets/js/pricereviewAlpine.js index 3465236d..9a1f0c2d 100644 --- a/wms/mkt/assets/js/pricereviewAlpine.js +++ b/wms/mkt/assets/js/pricereviewAlpine.js @@ -1,6 +1,6 @@ -const pricereviewCreate = ()=>{ +const pricereviewCreate = () => { return { - init(){ + init() { this.elevators = elevators; this.is_renovation = is_renovation this.selectedOptions = selectedOptions; @@ -15,9 +15,9 @@ const pricereviewCreate = ()=>{ 9:"CO" }, optionalArr: { - 1:'標配', - 2:'選配', - 3:'選配', + 1: '標配', + 2: '選配', + 3: '選配', }, total_spec: total_spec, options: options, @@ -27,9 +27,9 @@ const pricereviewCreate = ()=>{ subkind: 1, buttons: [], modalSelectedOptions: {}, - selectedOptions:[], + selectedOptions: [], elevators: [], - toElevators:[], + toElevators: [], toElevatorNo: '', currentOptionKey: '', currentOtherOptionKey: '', @@ -46,23 +46,23 @@ const pricereviewCreate = ()=>{ speed:'', open:'CO', num: 1, - price:'', - sale_price:'', + price: '', + sale_price: '', facility_id: '', model:'', }, otherOptions: [], - modalOtherOptionInfo:{ - pr_no:"", - name:"", + modalOtherOptionInfo: { + pr_no: "", + name: "", price: 0, - num:"", + num: "", }, - maintainOptions:[], - modalMaintainInfo:{ - price:0, - num:"", - memo:"", + maintainOptions: [], + modalMaintainInfo: { + price: 0, + num: "", + memo: "", }, demolishOptions: demolishOptions, modalDemolishOptionsInfo:{ @@ -122,15 +122,14 @@ const pricereviewCreate = ()=>{ try{ const res = await axios.get("./api/getElevatorPrice.php", {params: {model: model, kind: spec}}) console.log(res.data); - if(res.data.id == null || res.data.id == ""){ + if (res.data == null || res.data == "") { console.log("公司並無提供此規格!!"); } - this.elevators[idx].price = res.data.price - this.elevators[idx].facility_id = res.data.id - }catch (error) { + this.elevators[idx].price = res.data + } catch (error) { console.error("Error fetching elevator price:", error); } - + }, async getModalElevatorPrice(){ let model = ""; @@ -145,12 +144,11 @@ const pricereviewCreate = ()=>{ try{ const res = await axios.get("./api/getElevatorPrice.php", {params: {model: model, kind:kind}}) console.log(res.data); - if(res.data.id == null || res.data.id == ""){ + if (res.data == null || res.data == "") { console.log("公司並無提供此規格!!"); } - this.modalElevatorInfo.price = res.data.price - this.modalElevatorInfo.facility_id = res.data.id - }catch (error) { + this.modalElevatorInfo.price = res.data + } catch (error) { console.error("Error fetching elevator price:", error); } }, @@ -228,65 +226,65 @@ const pricereviewCreate = ()=>{ } }, optionSubCategory: 1, - initOptinos(){ - this.options.forEach(option=>{ + initOptinos() { + this.options.forEach(option => { option.isShow = 1; }) }, - searchOptions(kind=this.kind, subkind=this.subkind){ - if(kind!=null) this.kind = kind; - if(subkind!=null) this.subkind = subkind; + searchOptions(kind = this.kind, subkind = this.subkind) { + if (kind != null) this.kind = kind; + if (subkind != null) this.subkind = subkind; this.initOptinos(); this.initButtons(kind); - this.options.forEach(option=>{ - if(option.kind != this.kind && this.kind != 1){ + this.options.forEach(option => { + if (option.kind != this.kind && this.kind != 1) { option.isShow = 0; - }else{ - if(option.subkind != this.subkind && this.subkind != 1){ + } else { + if (option.subkind != this.subkind && this.subkind != 1) { option.isShow = 0; } } - if(option.isShow == 1){ - if(option.group_name == null) option.group_name = '' - if(option.spec == null) option.spec = '' - if(option.memo == null) option.memo = '' - if(option.price == null) option.price = 0 - if(option.unit == null) option.unit = '' - if(String(option.id).includes(this.searchtext) || option.group_name.includes(this.searchtext) || option.memo.toLowerCase().includes(this.searchtext) || option.spec.toLowerCase().includes(this.searchtext) || option.unit.includes(this.searchtext) || String(option.price).includes(this.searchtext)){ + if (option.isShow == 1) { + if (option.group_name == null) option.group_name = '' + if (option.spec == null) option.spec = '' + if (option.memo == null) option.memo = '' + if (option.price == null) option.price = 0 + if (option.unit == null) option.unit = '' + if (String(option.id).includes(this.searchtext) || option.group_name.includes(this.searchtext) || option.memo.toLowerCase().includes(this.searchtext) || option.spec.toLowerCase().includes(this.searchtext) || option.unit.includes(this.searchtext) || String(option.price).includes(this.searchtext)) { option.isShow = 1 - }else{ + } else { option.isShow = 0 } } }) }, - selectOption(idx, id, name, price, memo){ - this.options[idx].selected = this.options[idx].selected==1 ? 0 : 1; - - if(this.modalSelectedOptions.hasOwnProperty(idx)){ + selectOption(idx, id, name, price, memo) { + this.options[idx].selected = this.options[idx].selected == 1 ? 0 : 1; + + if (this.modalSelectedOptions.hasOwnProperty(idx)) { delete this.modalSelectedOptions[idx]; - }else{ + } else { //this.optionKey => 已選option 流水號, idx:option表內的流水號, id:option 資料庫的ID - this.modalSelectedOptions[idx] = {key:this.optionKey, 'idx':idx, 'id': id, 'name': name, 'price': price, qty:1, 'memo': memo, 'toElevator':[] } + this.modalSelectedOptions[idx] = { key: this.optionKey, 'idx': idx, 'id': id, 'name': name, 'price': price, qty: 1, 'memo': memo, 'toElevator': [] } } - this.optionKey ++; + this.optionKey++; }, - initModalSelectedOptions(){ + initModalSelectedOptions() { this.modalSelectedOptions = {} - this.options.forEach(option=>{ + this.options.forEach(option => { option.selected = 0 }) this.$refs.optionsModal.style.display = "block" body.style.overflow = 'hidden' }, - chkOptions(){ - Object.keys(this.modalSelectedOptions).forEach(option=>{ + chkOptions() { + Object.keys(this.modalSelectedOptions).forEach(option => { this.selectedOptions.push(this.modalSelectedOptions[option]) }) console.log(this.selectedOptions); this.hideOptionsModal(); }, - hideOptionsModal(){ + hideOptionsModal() { this.$refs.optionsModal.style.display = 'none'; body.style.overflow = 'auto' }, @@ -354,33 +352,33 @@ const pricereviewCreate = ()=>{ return total + (elevator.spec_num * elevator.price); }, 0); }, - totalElevatorsNum(){ + totalElevatorsNum() { return this.elevators.reduce((total, elevator) => { return total + Number(elevator.spec_num); }, 0) }, - totalElevatorsSalePrice(){ + totalElevatorsSalePrice() { return this.elevators.reduce((total, elevator) => { return total + (elevator.spec_num * elevator.spec_price); }, 0); }, - totalOptionsPrice(){ + totalOptionsPrice() { return this.selectedOptions.reduce((total, option) => { return total + (option.qty * option.price); }, 0); }, - openAddElevatorFn(){ + openAddElevatorFn() { }, - createElevatorFn(){ - if(this.modalElevatorInfo.spec == '') return alert("請選擇電梯規格"); - if(this.modalElevatorInfo.stop == '') return alert("請填入停數"); - if(this.modalElevatorInfo.speed == '') return alert("請選擇速度"); - if(this.modalElevatorInfo.open == '') return alert("請選擇開梯方式"); - if(this.modalElevatorInfo.person == '') return alert("請填入人乘/載重"); - if(this.modalElevatorInfo.num == '') return alert("請填入數量"); - if(this.modalElevatorInfo.sale_price == '') return alert("請填入售價"); - this.total_spec ++; + createElevatorFn() { + if (this.modalElevatorInfo.spec == '') return alert("請選擇電梯規格"); + if (this.modalElevatorInfo.stop == '') return alert("請填入停數"); + if (this.modalElevatorInfo.speed == '') return alert("請選擇速度"); + if (this.modalElevatorInfo.open == '') return alert("請選擇開梯方式"); + if (this.modalElevatorInfo.person == '') return alert("請填入人乘/載重"); + if (this.modalElevatorInfo.num == '') return alert("請填入數量"); + if (this.modalElevatorInfo.sale_price == '') return alert("請填入售價"); + this.total_spec++; this.elevators.push({ id: this.total_spec, specifications: this.modalElevatorInfo.spec, @@ -390,7 +388,7 @@ const pricereviewCreate = ()=>{ open_converted: this.modalElevatorInfo.open, spec_price: this.modalElevatorInfo.sale_price, price: this.modalElevatorInfo.price, - open:'', + open: '', spec_num: this.modalElevatorInfo.num, facility_id: this.modalElevatorInfo.facility_id, model: this.modalElevatorInfo.model, @@ -398,7 +396,7 @@ const pricereviewCreate = ()=>{ console.log(this.elevators); this.hideCreateElevatorModal(); }, - copyElevator(idx){ + copyElevator(idx) { const spec = this.elevators[idx].specifications const person = this.elevators[idx].person const stop = this.elevators[idx].stop @@ -411,7 +409,7 @@ const pricereviewCreate = ()=>{ const facility_id = this.elevators[idx].facility_id const model = this.elevators[idx].model - this.total_spec ++; + this.total_spec++; this.elevators.push({ id: this.total_spec, specifications: spec, @@ -484,11 +482,11 @@ const pricereviewCreate = ()=>{ this.$refs.toElevatorModal.style.display = 'block'; body.style.overflow = 'hidden' }, - addOtherOptionToElevator(id){ + addOtherOptionToElevator(id) { this.currentOtherOptionKey = id; this.toElevators = []; this.toElevatorNo = ""; - const matchElevators = this.otherOptions.filter(option=> option.id == id)[0].toElevator.map(elevator=> elevator.id) + const matchElevators = this.otherOptions.filter(option => option.id == id)[0].toElevator.map(elevator => elevator.id) this.toElevatorNo = matchElevators[0] this.elevators.forEach(elevator=>{ if(elevator.price > 0){ @@ -510,7 +508,7 @@ const pricereviewCreate = ()=>{ this.$refs.toOtherOptionElevatorModal.style.display = 'block'; body.style.overflow = 'hidden' }, - chkOptionToElevators(){ + chkOptionToElevators() { const checkedOptions = []; const matchElevators = this.elevators.filter(elevator=> elevator.id == this.toElevatorNo)[0] @@ -518,8 +516,8 @@ const pricereviewCreate = ()=>{ id: this.toElevatorNo, model: matchElevators['model'] , }) - this.selectedOptions.forEach(option=>{ - if(option.key == this.currentOptionKey){ + this.selectedOptions.forEach(option => { + if (option.key == this.currentOptionKey) { option.toElevator = []; option.toElevator.push(...checkedOptions) } @@ -527,7 +525,7 @@ const pricereviewCreate = ()=>{ this.currentOptionKey = '' this.hideToElevatorModal(); }, - chkOtherOptionToElevators(){ + chkOtherOptionToElevators() { const checkedOptions = []; const matchElevators = this.elevators.filter(elevator=> elevator.id == this.toElevatorNo)[0] @@ -535,8 +533,8 @@ const pricereviewCreate = ()=>{ id: this.toElevatorNo, model: matchElevators['model'], }) - this.otherOptions.forEach(option=>{ - if(option.id == this.currentOtherOptionKey){ + this.otherOptions.forEach(option => { + if (option.id == this.currentOtherOptionKey) { option.toElevator = []; option.toElevator.push(...checkedOptions) } @@ -546,36 +544,36 @@ const pricereviewCreate = ()=>{ this.hideToOtherOptionElevatorModal(); }, - removeElevator(id){ - if(!confirm("確定刪除嗎?")) return; - this.elevators = this.elevators.filter(elevator=> elevator.id != id) + removeElevator(id) { + if (!confirm("確定刪除嗎?")) return; + this.elevators = this.elevators.filter(elevator => elevator.id != id) const issetElevators = []; - this.elevators.forEach(elevator=>{ + this.elevators.forEach(elevator => { issetElevators.push(elevator.id); }) - this.selectedOptions.forEach(option=>{ - option.toElevator = option.toElevator.filter(el=>{ + this.selectedOptions.forEach(option => { + option.toElevator = option.toElevator.filter(el => { return issetElevators.includes(el.id) }) }) console.log(this.selectedOptions); }, - removeOption(key){ + removeOption(key) { console.log(this.selectedOptions); - this.selectedOptions = this.selectedOptions.filter(option=> option.key != key) + this.selectedOptions = this.selectedOptions.filter(option => option.key != key) }, - removeOtherOption(id){ - this.otherOptions = this.otherOptions.filter(option=> option.id != id) + removeOtherOption(id) { + this.otherOptions = this.otherOptions.filter(option => option.id != id) }, - createOtherOptionFn(){ + createOtherOptionFn() { this.otherOptions.push({ id: this.otherOptionKey, pr_no: this.modalOtherOptionInfo.pr_no, name: this.modalOtherOptionInfo.name, price: this.modalOtherOptionInfo.price, num: this.modalOtherOptionInfo.num, - toElevator:[], + toElevator: [], }) this.modalOtherOptionInfo = { pr_no: '', @@ -583,34 +581,35 @@ const pricereviewCreate = ()=>{ price: 0, num: '', } - this.otherOptionKey ++; - this.hideCreateOtherOptionModal(); + this.otherOptionKey++; + console.log(this.otherOptions); + this.$refs.closeCreateOtherOptionModalBtn.click(); }, - totalOtherOptionsPrice(){ + totalOtherOptionsPrice() { return this.otherOptions.reduce((total, option) => { return total + (Number(option.num) * Number(option.price)); }, 0); }, - totalOtherOptionsNum(){ + totalOtherOptionsNum() { return this.otherOptions.reduce((total, option) => { return total + Number(option.num); }, 0); }, - createMaintainOptionFn(){ + createMaintainOptionFn() { this.maintainOptions.push({ id: this.maintainOptionKey, price: this.modalMaintainInfo.price, num: this.modalMaintainInfo.num, memo: this.modalMaintainInfo.memo, - toElevator:[], + toElevator: [], }) this.modalMaintainInfo = { - price:0, - num:"", - memo:"", + price: 0, + num: "", + memo: "", } - this.maintainOptionKey ++; - this.hideCreateMaintainModal(); + this.maintainOptionKey++; + this.$refs.closeCreateMaintainOptionModalBtn.click(); }, createDemolishOptionFn(){ this.demolishOptions.push({ @@ -636,7 +635,7 @@ const pricereviewCreate = ()=>{ return total + (Number(option.num) * Number(option.price)); }, 0); }, - totalMaintainOptionsNum(){ + totalMaintainOptionsNum() { return this.maintainOptions.reduce((total, option) => { return total + Number(option.num); }, 0); @@ -659,8 +658,8 @@ const pricereviewCreate = ()=>{ id: this.toElevatorNo, model: matchElevators['model'], }) - this.maintainOptions.forEach(option=>{ - if(option.id == this.currentMaintainOptionKey){ + this.maintainOptions.forEach(option => { + if (option.id == this.currentMaintainOptionKey) { option.toElevator = []; option.toElevator.push(...checkedOptions) } @@ -688,7 +687,7 @@ const pricereviewCreate = ()=>{ this.currentMaintainOptionKey = id; this.toElevators = []; this.toElevatorNo = ""; - const matchElevators = this.maintainOptions.filter(option=> option.id == id)[0].toElevator.map(elevator=> elevator.id) + const matchElevators = this.maintainOptions.filter(option => option.id == id)[0].toElevator.map(elevator => elevator.id) this.toElevatorNo = matchElevators[0] this.elevators.forEach(elevator=>{ if(elevator.price > 0){ @@ -745,19 +744,19 @@ const pricereviewCreate = ()=>{ totalPrice(){ return this.totalElevatorsPrice() + this.totalOptionsPrice() + this.totalOtherOptionsPrice() + this.totalMaintainOptionsPrice(); }, - totalSalePrice(){ + totalSalePrice() { return this.elevators.reduce((total, elevator) => { return total + (elevator.spec_num * elevator.spec_price); }, 0); }, - scalePrice(scale){ - if(scale === '') return 0; + scalePrice(scale) { + if (scale === '') return 0; return this.totalSalePrice() * scale / 100; }, - totalScale(){ + totalScale() { let total = 0; - Object.keys(this.paymentRatio).forEach(pay=>{ - if(this.paymentRatio[pay].scale != '' && this.paymentRatio[pay].scale > 0){ + Object.keys(this.paymentRatio).forEach(pay => { + if (this.paymentRatio[pay].scale != '' && this.paymentRatio[pay].scale > 0) { total += Number(this.paymentRatio[pay].scale) } }) @@ -815,7 +814,7 @@ const pricereviewCreate = ()=>{ form.append('address', this.customerInfo.address); form.append('price_lowest', this.totalPrice()); form.append('price_total', this.totalSalePrice()); - form.append('price_rate', Math.round(this.totalSalePrice() / this.totalPrice() * 100 *10) / 10); + form.append('price_rate', Math.round(this.totalSalePrice() / this.totalPrice() * 100 * 10) / 10); form.append('special_fee', this.serviceFee); form.append('predeal_date', this.transactionDate); form.append('facilitok_date', this.shippingDate); @@ -837,14 +836,14 @@ const pricereviewCreate = ()=>{ form.append('demolishOptions', JSON.stringify(this.demolishOptions)); form.append('paymentRatio', JSON.stringify(this.paymentRatio)); - - axios.post('./api/postNewElevatorPricereview.php', form).then(res=>{ + + axios.post('./api/postNewElevatorPricereview.php', form).then(res => { console.log(res.data); - if(res.data == "success"){ + if (res.data == "success") { alert("送審成功!"); window.location.href = './pricereview-index.php?' + token_link; } - }).catch(err=>{ + }).catch(err => { console.error(err); }) }, @@ -894,9 +893,7 @@ const pricereviewCreate = ()=>{ }, } } - - -const pricereviewCheck = ()=>{ +const pricereviewCheck = () => { return { init(){ this.elevators = elevators @@ -920,8 +917,8 @@ const pricereviewCheck = ()=>{ if(option.option_relate_spec == elevator.item_no){ elevator.optionsTotalPrice += option.option_mi * option.item_qty this.elevators[idx].options.push({ - 'id': option.id, //&lt;br&gt;() - 'item_spec': option.item_spec.trim().replaceAll('&', '').replaceAll('lt;', '').replaceAll('br', '').replaceAll('gt;', '').replaceAll('()', ''), + 'id': option.id, + 'item_spec': option.item_spec.trim(), 'item_unit_price': option.item_unit_price, 'item_qty': option.item_qty, 'mi': Math.round(option.option_mi), @@ -930,11 +927,11 @@ const pricereviewCheck = ()=>{ } }) - this.otherOptions.forEach(option=>{ - if(option.option_relate_spec == elevator.item_no){ + this.otherOptions.forEach(option => { + if (option.option_relate_spec == elevator.item_no) { elevator.otherOptionsTotalPrice += option.item_unit_price * option.item_qty this.elevators[idx].otherOptions.push({ - 'id': option.id, + 'id': option.id, 'item_spec': option.item_spec.trim(), 'item_unit_price': option.item_unit_price, 'item_qty': option.item_qty, @@ -943,8 +940,8 @@ const pricereviewCheck = ()=>{ } }) - this.maintainOptions.forEach(option=>{ - if(option.option_relate_spec == elevator.item_no){ + this.maintainOptions.forEach(option => { + if (option.option_relate_spec == elevator.item_no) { elevator.maintainOptionsTotalPrice += option.item_unit_price * option.item_qty this.elevators[idx].maintainOptions.push({ 'id': option.id, @@ -976,14 +973,14 @@ const pricereviewCheck = ()=>{ let stop = model.split('-')[1].split('*')[1].split('-')[0]; let open = model.split('-')[2]; let speed = ''; - for(let i=0;i{ 'add_price':0, } } - + console.log(this.elevators[idx]); - }catch (error) { + } catch (error) { console.error("Error fetching elevator price:", error); } }, - isNotfoundMi:false, - openFn:[ + isNotfoundMi: false, + openFn: [ 'CO', '2S', '2U', '4PCO', '6PCO' ], - sign1:'', - sign2:'', - sign3:'', - sign4:'', + sign1: '', + sign2: '', + sign3: '', + sign4: '', is_renovate: false, elevators_total_price: 0, contractno: contractno, @@ -1057,25 +1054,24 @@ const pricereviewCheck = ()=>{ memo: memo, qty: 0, pays: pays, - elevators:[], + elevators: [], options: [], otherOptions: [], maintainOptions: [], demolishOptions:[], mid: mid, user_id: user_id, - reviewcomment:'', - optionsTotalPrice(){ + optionsTotalPrice() { return this.options.reduce((total, option) => { return total + (option.item_qty * option.item_unit_price); }, 0); }, - otherOptionsTotalPrice(){ + otherOptionsTotalPrice() { return this.otherOptions.reduce((total, option) => { return total + (option.item_qty * option.item_unit_price); }, 0); }, - maintainOptionsTotalPrice(){ + maintainOptionsTotalPrice() { return this.maintainOptions.reduce((total, option) => { return total + (option.item_qty * option.item_unit_price); }, 0); @@ -1087,7 +1083,7 @@ const pricereviewCheck = ()=>{ }, totalScale(){ return this.pays.reduce((total, option) => { - return total + Number(option.pay_scale ); + return total + Number(option.pay_scale); }, 0); }, totalElevatorsPrice(){ @@ -1105,10 +1101,9 @@ const pricereviewCheck = ()=>{ form.append('mid', this.mid); form.append('result', status); form.append('user_id', this.user_id); - form.append('reviewcomment', this.reviewcomment); - axios.post('./api/postPricereviewSign.php', form).then(res=>{ + axios.post('./api/postPricereviewSign.php', form).then(res => { console.log(res.data); - if(res.data == 1){ + if (res.data == 1) { alert("簽核成功!"); window.location.reload() } @@ -1120,5 +1115,6 @@ const pricereviewCheck = ()=>{ const res = await axios.get('./api/getUsername.php', {params: {user_id: user_id}}) return res.data ; }, + } } \ No newline at end of file diff --git a/wms/mkt/css/pricereview.css b/wms/mkt/css/pricereview.css index 3a399437..a69bdd56 100644 --- a/wms/mkt/css/pricereview.css +++ b/wms/mkt/css/pricereview.css @@ -1,34 +1,58 @@ -#pricereviewCreate input[type=text], #pricereviewCreate input[type=number], #pricereviewCreate select { +#pricereviewCreate input[type=text], +#pricereviewCreate input[type=number], +#pricereviewCreate select { margin: 1px; } + #pricereviewCreate textarea { resize: vertical; } -#pricereviewCreate > .modal { + +#pricereviewCreate>.modal { padding: 20px; } -#pricereviewCreate > .modal table, #pricereviewCreate > .modal th, #pricereviewCreate > .modal td { + +#pricereviewCreate>.modal table, +#pricereviewCreate>.modal th, +#pricereviewCreate>.modal td { border: 1px #ccc solid; } -#pricereviewCreate > .modal table > thead tr th { + +#pricereviewCreate>.modal table>thead tr th { color: #A52A2A; } -#pricereviewCreate > .modal table > tbody .selected { + +#pricereviewCreate>.modal table>tbody .selected { background-color: #E7FEFB; } -#pricereviewCreate .container table, #pricereviewCreate .container th, #pricereviewCreate .container td { + +#pricereviewCreate .container table, +#pricereviewCreate .container th, +#pricereviewCreate .container td { border: 1px #ccc solid; padding: 15px; } -#pricereviewCreate .container table.noborder, #pricereviewCreate .container table .noborder th, #pricereviewCreate .container table .noborder td, #pricereviewCreate .container th.noborder, #pricereviewCreate .container th .noborder th, #pricereviewCreate .container th .noborder td, #pricereviewCreate .container td.noborder, #pricereviewCreate .container td .noborder th, #pricereviewCreate .container td .noborder td { + +#pricereviewCreate .container table.noborder, +#pricereviewCreate .container table .noborder th, +#pricereviewCreate .container table .noborder td, +#pricereviewCreate .container th.noborder, +#pricereviewCreate .container th .noborder th, +#pricereviewCreate .container th .noborder td, +#pricereviewCreate .container td.noborder, +#pricereviewCreate .container td .noborder th, +#pricereviewCreate .container td .noborder td { border: none; } + #pricereviewCreate .container table thead th { background-color: #6D9EEB; } + #pricereviewCreate .container table tbody td input { font-size: 14px; } + #pricereviewCreate .container table tbody th { background-color: #CCE4F8; font-size: 14px; @@ -36,15 +60,18 @@ min-width: 100px; text-align: center; } + #pricereviewCreate .container table input { font-size: 13px; } + #pricereviewCreate .container .pricreviewmain { background-color: #F2F2F2; padding: 20px; border-radius: 6px; margin: 30px 0; } + #pricereviewCreate .container .pricreviewmain button { color: #fff; width: 55px; @@ -54,60 +81,89 @@ margin-bottom: 2px; font-size: 13px; } + #pricereviewCreate .container .pricreviewmain button.addbtn { background-color: #337AB7; width: 30px; } + #pricereviewCreate .container .pricreviewmain button.deleteBtn { background-color: #D9534F; color: #fff; font-size: 12px; width: 30px; } + #pricereviewCreate .container .pricreviewmain button.selectElevator { background-color: #D9534F; color: #fff; } -#pricereviewCreate .container .pricreviewmain > .divitem { + +#pricereviewCreate .container .pricreviewmain>.divitem { border: 1px #ccc solid; padding: 10px; border-radius: 4px; } -#pricereviewCreate .container .pricreviewmain > .divitem .title { + +#pricereviewCreate .container .pricreviewmain>.divitem .title { display: flex; align-items: center; border-bottom: 1px #ccc solid; padding: 10px 0; margin-bottom: 10px; } -#pricereviewCreate .container .pricreviewmain > .divitem .title h6 { + +#pricereviewCreate .container .pricreviewmain>.divitem .title h6 { font-weight: 600; } -#pricereviewCreate .container .pricreviewmain > .divitem table, #pricereviewCreate .container .pricreviewmain > .divitem th, #pricereviewCreate .container .pricreviewmain > .divitem td { + +#pricereviewCreate .container .pricreviewmain>.divitem table, +#pricereviewCreate .container .pricreviewmain>.divitem th, +#pricereviewCreate .container .pricreviewmain>.divitem td { font-size: 14px; background-color: transparent; } -#pricereviewCreate .container .pricreviewmain > .divitem table input, #pricereviewCreate .container .pricreviewmain > .divitem table select, #pricereviewCreate .container .pricreviewmain > .divitem table textarea, #pricereviewCreate .container .pricreviewmain > .divitem th input, #pricereviewCreate .container .pricreviewmain > .divitem th select, #pricereviewCreate .container .pricreviewmain > .divitem th textarea, #pricereviewCreate .container .pricreviewmain > .divitem td input, #pricereviewCreate .container .pricreviewmain > .divitem td select, #pricereviewCreate .container .pricreviewmain > .divitem td textarea { + +#pricereviewCreate .container .pricreviewmain>.divitem table input, +#pricereviewCreate .container .pricreviewmain>.divitem table select, +#pricereviewCreate .container .pricreviewmain>.divitem table textarea, +#pricereviewCreate .container .pricreviewmain>.divitem th input, +#pricereviewCreate .container .pricreviewmain>.divitem th select, +#pricereviewCreate .container .pricreviewmain>.divitem th textarea, +#pricereviewCreate .container .pricreviewmain>.divitem td input, +#pricereviewCreate .container .pricreviewmain>.divitem td select, +#pricereviewCreate .container .pricreviewmain>.divitem td textarea { font-size: 13px; } -#pricereviewCreate .container .pricreviewmain > .divitem table input[type=number]::-webkit-outer-spin-button, -#pricereviewCreate .container .pricreviewmain > .divitem table input[type=number]::-webkit-inner-spin-button, #pricereviewCreate .container .pricreviewmain > .divitem th input[type=number]::-webkit-outer-spin-button, -#pricereviewCreate .container .pricreviewmain > .divitem th input[type=number]::-webkit-inner-spin-button, #pricereviewCreate .container .pricreviewmain > .divitem td input[type=number]::-webkit-outer-spin-button, -#pricereviewCreate .container .pricreviewmain > .divitem td input[type=number]::-webkit-inner-spin-button { + +#pricereviewCreate .container .pricreviewmain>.divitem table input[type=number]::-webkit-outer-spin-button, +#pricereviewCreate .container .pricreviewmain>.divitem table input[type=number]::-webkit-inner-spin-button, +#pricereviewCreate .container .pricreviewmain>.divitem th input[type=number]::-webkit-outer-spin-button, +#pricereviewCreate .container .pricreviewmain>.divitem th input[type=number]::-webkit-inner-spin-button, +#pricereviewCreate .container .pricreviewmain>.divitem td input[type=number]::-webkit-outer-spin-button, +#pricereviewCreate .container .pricreviewmain>.divitem td input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } -#pricereviewCreate .container .pricreviewmain > .divitem table tr:hover .deleteBtn, #pricereviewCreate .container .pricreviewmain > .divitem table tr:hover .copyBtn { + +#pricereviewCreate .container .pricreviewmain>.divitem table tr:hover .deleteBtn, +#pricereviewCreate .container .pricreviewmain>.divitem table tr:hover .copyBtn { opacity: 1; } +<<<<<<< HEAD #pricereviewCreate .container .pricreviewmain > .divitem table .copyBtn { width: 30px; height: 30px; } #pricereviewCreate .container .pricreviewmain > .divitem table .saletd { +======= + +#pricereviewCreate .container .pricreviewmain>.divitem table .saletd { +>>>>>>> 3ca7276d197f3d77f11e3719294215e04a32dc62 position: relative; } -#pricereviewCreate .container .pricreviewmain > .divitem table .saletd > .deleteBtn { + +#pricereviewCreate .container .pricreviewmain>.divitem table .saletd>.deleteBtn { position: absolute; top: 50%; transform: translateY(-50%); @@ -115,7 +171,8 @@ opacity: 0; transition: 0.3s; } -#pricereviewCreate .container .pricreviewmain > .divitem table .saletd > .copyBtn { + +#pricereviewCreate .container .pricreviewmain>.divitem table .saletd>.copyBtn { position: absolute; top: 50%; transform: translateY(-50%); @@ -125,29 +182,35 @@ width: 30px; height: 30px; } -#pricereviewCreate .container .pricreviewmain > .divitem table textarea { + +#pricereviewCreate .container .pricreviewmain>.divitem table textarea { height: auto; min-height: 50px; } -#pricereviewCreate .container .pricreviewmain > .filediv { + +#pricereviewCreate .container .pricreviewmain>.filediv { display: flex; flex-direction: column; margin-top: 20px; } -#pricereviewCreate .container .pricreviewmain > .filediv label { + +#pricereviewCreate .container .pricreviewmain>.filediv label { display: flex; align-items: center; margin: 10px 0; } -#pricereviewCreate .container .pricreviewmain > .filediv label p { + +#pricereviewCreate .container .pricreviewmain>.filediv label p { width: 100px; font-size: 15px; font-weight: 600; } -#pricereviewCreate .container .pricreviewmain > .filediv label input[type=file] { + +#pricereviewCreate .container .pricreviewmain>.filediv label input[type=file] { width: 400px; } -#pricereviewCreate .container .pricreviewmain > .filediv label button { + +#pricereviewCreate .container .pricreviewmain>.filediv label button { width: 90px; height: 35px; margin: 0; @@ -155,14 +218,19 @@ margin-top: 20px; } -.container-fluid, .container { +.container-fluid, +.container { max-width: 1400px !important; width: 100%; } -.container-fluid h4, .container h4 { + +.container-fluid h4, +.container h4 { font-weight: 600; } -.container-fluid .btn-secondary, .container .btn-secondary { + +.container-fluid .btn-secondary, +.container .btn-secondary { background-color: #6C757D; } @@ -177,39 +245,51 @@ padding: 20px; display: none; } + @keyframes fade-in { 0% { transform: translate(-50%, -60%); opacity: 0; } + 100% { transform: translate(-50%, -55%); opacity: 1; } } -.window-modal table, .window-modal th, .window-modal td { + +.window-modal table, +.window-modal th, +.window-modal td { border: 1px #ccc solid; } -.window-modal table > thead tr th { + +.window-modal table>thead tr th { color: #A52A2A; } -.window-modal table > tbody .selected { + +.window-modal table>tbody .selected { background-color: #E7FEFB; } + .window-modal#optionModal .window-modal-content { max-height: 80vh; } + .window-modal#optionModal .window-modal-content .window-modal-body { height: 400px; overflow-y: scroll; } + .window-modal#toElevatorModal .window-modal-content { min-height: 270px; height: auto; } + .window-modal#toElevatorModal .window-modal-content .window-modal-body { height: auto; } + .window-modal .window-modal-content { z-index: 9; background-color: #fff; @@ -223,19 +303,24 @@ box-shadow: 0 5px 5px #222; animation: fade-in 0.2s linear; } + .window-modal .window-modal-content.modal-xl { max-width: 1200px; } + .window-modal .window-modal-content.modal-lg { max-width: 800px; } + .window-modal .window-modal-content.modal-m { max-width: 450px; } + .window-modal .window-modal-content .window-modal-header { display: flex; flex-direction: column; } + .window-modal .window-modal-content .window-modal-header button.btn-close { position: absolute; top: 10px; @@ -245,9 +330,11 @@ outline: none; border-radius: 50%; } -.window-modal .window-modal-content .window-modal-header > div > input { + +.window-modal .window-modal-content .window-modal-header>div>input { width: 250px; } + .window-modal .window-back { position: absolute; top: 0; @@ -257,45 +344,60 @@ background-color: transparent; } -#pricereviewCheck > .container { +#pricereviewCheck>.container { background-color: #F2F2F2; border-radius: 15px; padding: 20px; } -#pricereviewCheck > .container textarea { + +#pricereviewCheck>.container textarea { resize: vertical; } -#pricereviewCheck > .container table, #pricereviewCheck > .container th, #pricereviewCheck > .container td { + +#pricereviewCheck>.container table, +#pricereviewCheck>.container th, +#pricereviewCheck>.container td { border: 1px #ccc solid; } -#pricereviewCheck > .container table.noborder { + +#pricereviewCheck>.container table.noborder { border: none !important; } -#pricereviewCheck > .container table.noborder th, #pricereviewCheck > .container table.noborder td { + +#pricereviewCheck>.container table.noborder th, +#pricereviewCheck>.container table.noborder td { border: none !important; } -#pricereviewCheck > .container .customerinfo-table input { + +#pricereviewCheck>.container .customerinfo-table input { background-color: #EEE5E5; } -#pricereviewCheck > .container .mi-table th { + +#pricereviewCheck>.container .mi-table th { font-weight: 600; } -#pricereviewCheck > .container .mi-table input[type=text] { + +#pricereviewCheck>.container .mi-table input[type=text] { background-color: #EEEEEE; cursor: not-allowed; padding: 6px 12px; font-size: 14px; } -#pricereviewCheck > .container .mi-table .mi-info { + +#pricereviewCheck>.container .mi-table .mi-info { font-size: 14px; } -#pricereviewCheck > .container .mi-table .mi-info span { + +#pricereviewCheck>.container .mi-table .mi-info span { font-size: 15px; font-weight: 600; } -#pricereviewCheck > .container .mi-table .mi-info .line { + +#pricereviewCheck>.container .mi-table .mi-info .line { width: 100%; height: 0.5px; margin: 30px 0; background-color: #ccc; -}/*# sourceMappingURL=pricereview.css.map */ \ No newline at end of file +} + +/*# sourceMappingURL=pricereview.css.map */ \ No newline at end of file diff --git a/wms/mkt/css/pricereview.css.map b/wms/mkt/css/pricereview.css.map index c9d78202..e239ad27 100644 --- a/wms/mkt/css/pricereview.css.map +++ b/wms/mkt/css/pricereview.css.map @@ -1 +1,14 @@ -{"version":3,"sources":["pricereview.scss","pricereview.css"],"names":[],"mappings":"AACI;EACI,WAAA;ACAR;ADEI;EACI,gBAAA;ACAR;ADEI;EACI,aAAA;ACAR;ADCQ;EACI,sBAAA;ACCZ;ADCQ;EACI,cAAA;ACCZ;ADCQ;EACI,yBAAA;ACCZ;ADKQ;EACI,sBAAA;EACA,aAAA;ACHZ;ADIY;EACI,YAAA;ACFhB;ADMY;EACI,yBAAA;ACJhB;ADOgB;EACI,eAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;ACLpB;ADQY;EACI,eAAA;ACNhB;ADSQ;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,cAAA;ACPZ;ADQY;EACI,WAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;ACNhB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;EACA,eAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADSY;EACI,sBAAA;EACA,aAAA;EACA,kBAAA;ACPhB;ADQgB;EACI,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,eAAA;EACA,mBAAA;ACNpB;ADOoB;EACI,gBAAA;ACLxB;ADSgB;EACI,eAAA;EACA,6BAAA;ACPpB;ADQoB;EACI,eAAA;ACNxB;ADQoB;;;;EAEA,wBAAA;EACA,SAAA;ACJpB;ADQoB;EACI,UAAA;ACNxB;ADQoB;EACI,WAAA;EACA,YAAA;ACNxB;ADQoB;EACI,kBAAA;ACNxB;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,UAAA;EACA,UAAA;EACA,gBAAA;ACL5B;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,WAAA;EACA,UAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;ACL5B;ADQoB;EACI,YAAA;EACA,gBAAA;ACNxB;ADUY;EACI,aAAA;EACA,sBAAA;EACA,gBAAA;ACRhB;ADSgB;EACI,aAAA;EACA,mBAAA;EACA,cAAA;ACPpB;ADQoB;EACI,YAAA;EACA,eAAA;EACA,gBAAA;ACNxB;ADQoB;EACI,YAAA;ACNxB;ADQoB;EACI,WAAA;EACA,YAAA;EACA,SAAA;EACA,kBAAA;EACA,gBAAA;ACNxB;;ADcA;EACI,4BAAA;EACA,WAAA;ACXJ;ADYI;EACI,gBAAA;ACVR;ADYI;EACI,yBAAA;ACVR;;ADcA;EACI,eAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,aAAA;EACA,oCAAA;EACA,UAAA;EACA,aAAA;EACA,aAAA;ACXJ;ADYI;EACI;IACI,gCAAA;IACA,UAAA;ECVV;EDYM;IACI,gCAAA;IACA,UAAA;ECVV;AACF;ADYI;EACI,sBAAA;ACVR;ADYI;EACI,cAAA;ACVR;ADYI;EACI,yBAAA;ACVR;ADYI;EACI,gBAAA;ACVR;ADWQ;EACI,aAAA;EACA,kBAAA;ACTZ;ADYI;EACI,iBAAA;EACA,YAAA;ACVR;ADWQ;EACI,YAAA;ACTZ;ADYI;EACI,UAAA;EACA,sBAAA;EACA,mBAAA;EACA,kBAAA;EACA,UAAA;EACA,aAAA;EACA,QAAA;EACA,SAAA;EACA,gCAAA;EACA,0BAAA;EACA,8BAAA;ACVR;ADWQ;EACI,iBAAA;ACTZ;ADWQ;EACI,gBAAA;ACTZ;ADWQ;EACI,gBAAA;ACTZ;ADWQ;EACI,aAAA;EACA,sBAAA;ACTZ;ADUY;EACI,kBAAA;EACA,SAAA;EACA,WAAA;EACA,6BAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;ACRhB;ADUY;EACI,YAAA;ACRhB;ADYI;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,YAAA;EACA,6BAAA;ACVR;;ADeI;EACI,yBAAA;EACA,mBAAA;EACA,aAAA;ACZR;ADaQ;EACI,gBAAA;ACXZ;ADaQ;EACI,sBAAA;ACXZ;ADaQ;EACI,uBAAA;ACXZ;ADYY;EACI,uBAAA;ACVhB;ADcY;EACI,yBAAA;ACZhB;ADgBY;EACI,gBAAA;ACdhB;ADgBY;EACI,yBAAA;EACA,mBAAA;EACA,iBAAA;EACA,eAAA;ACdhB;ADgBY;EACI,eAAA;ACdhB;ADegB;EACI,eAAA;EACA,gBAAA;ACbpB;ADegB;EACI,WAAA;EACA,aAAA;EACA,cAAA;EACA,sBAAA;ACbpB","file":"pricereview.css"} \ No newline at end of file +<<<<<<< HEAD +{"version":3,"sources":["pricereview.scss","pricereview.css"],"names":[],"mappings":"AACI;EACI,WAAA;ACAR;ADEI;EACI,gBAAA;ACAR;ADEI;EACI,aAAA;ACAR;ADCQ;EACI,sBAAA;ACCZ;ADCQ;EACI,cAAA;ACCZ;ADCQ;EACI,yBAAA;ACCZ;ADKQ;EACI,sBAAA;EACA,aAAA;ACHZ;ADIY;EACI,YAAA;ACFhB;ADMY;EACI,yBAAA;ACJhB;ADOgB;EACI,eAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;ACLpB;ADQY;EACI,eAAA;ACNhB;ADSQ;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,cAAA;ACPZ;ADQY;EACI,WAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;ACNhB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;EACA,eAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADSY;EACI,sBAAA;EACA,aAAA;EACA,kBAAA;ACPhB;ADQgB;EACI,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,eAAA;EACA,mBAAA;ACNpB;ADOoB;EACI,gBAAA;ACLxB;ADSgB;EACI,eAAA;EACA,6BAAA;ACPpB;ADQoB;EACI,eAAA;ACNxB;ADQoB;;;;EAEA,wBAAA;EACA,SAAA;ACJpB;ADQoB;EACI,UAAA;ACNxB;ADQoB;EACI,WAAA;EACA,YAAA;ACNxB;ADQoB;EACI,kBAAA;ACNxB;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,UAAA;EACA,UAAA;EACA,gBAAA;ACL5B;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,WAAA;EACA,UAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;ACL5B;ADQoB;EACI,YAAA;EACA,gBAAA;ACNxB;ADUY;EACI,aAAA;EACA,sBAAA;EACA,gBAAA;ACRhB;ADSgB;EACI,aAAA;EACA,mBAAA;EACA,cAAA;ACPpB;ADQoB;EACI,YAAA;EACA,eAAA;EACA,gBAAA;ACNxB;ADQoB;EACI,YAAA;ACNxB;ADQoB;EACI,WAAA;EACA,YAAA;EACA,SAAA;EACA,kBAAA;EACA,gBAAA;ACNxB;;ADcA;EACI,4BAAA;EACA,WAAA;ACXJ;ADYI;EACI,gBAAA;ACVR;ADYI;EACI,yBAAA;ACVR;;ADcA;EACI,eAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,aAAA;EACA,oCAAA;EACA,UAAA;EACA,aAAA;EACA,aAAA;ACXJ;ADYI;EACI;IACI,gCAAA;IACA,UAAA;ECVV;EDYM;IACI,gCAAA;IACA,UAAA;ECVV;AACF;ADYI;EACI,sBAAA;ACVR;ADYI;EACI,cAAA;ACVR;ADYI;EACI,yBAAA;ACVR;ADYI;EACI,gBAAA;ACVR;ADWQ;EACI,aAAA;EACA,kBAAA;ACTZ;ADYI;EACI,iBAAA;EACA,YAAA;ACVR;ADWQ;EACI,YAAA;ACTZ;ADYI;EACI,UAAA;EACA,sBAAA;EACA,mBAAA;EACA,kBAAA;EACA,UAAA;EACA,aAAA;EACA,QAAA;EACA,SAAA;EACA,gCAAA;EACA,0BAAA;EACA,8BAAA;ACVR;ADWQ;EACI,iBAAA;ACTZ;ADWQ;EACI,gBAAA;ACTZ;ADWQ;EACI,gBAAA;ACTZ;ADWQ;EACI,aAAA;EACA,sBAAA;ACTZ;ADUY;EACI,kBAAA;EACA,SAAA;EACA,WAAA;EACA,6BAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;ACRhB;ADUY;EACI,YAAA;ACRhB;ADYI;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,YAAA;EACA,6BAAA;ACVR;;ADeI;EACI,yBAAA;EACA,mBAAA;EACA,aAAA;ACZR;ADaQ;EACI,gBAAA;ACXZ;ADaQ;EACI,sBAAA;ACXZ;ADaQ;EACI,uBAAA;ACXZ;ADYY;EACI,uBAAA;ACVhB;ADcY;EACI,yBAAA;ACZhB;ADgBY;EACI,gBAAA;ACdhB;ADgBY;EACI,yBAAA;EACA,mBAAA;EACA,iBAAA;EACA,eAAA;ACdhB;ADgBY;EACI,eAAA;ACdhB;ADegB;EACI,eAAA;EACA,gBAAA;ACbpB;ADegB;EACI,WAAA;EACA,aAAA;EACA,cAAA;EACA,sBAAA;ACbpB","file":"pricereview.css"} +======= +{ + "version": 3, + "sources": [ + "pricereview.scss", + "pricereview.css" + ], + "names": [], + "mappings": "AACI;EACI,WAAA;ACAR;ADEI;EACI,gBAAA;ACAR;ADEI;EACI,aAAA;ACAR;ADCQ;EACI,sBAAA;ACCZ;ADCQ;EACI,cAAA;ACCZ;ADCQ;EACI,yBAAA;ACCZ;ADKQ;EACI,sBAAA;EACA,aAAA;ACHZ;ADIY;EACI,YAAA;ACFhB;ADMY;EACI,yBAAA;ACJhB;ADOgB;EACI,eAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;ACLpB;ADQY;EACI,eAAA;ACNhB;ADSQ;EACI,yBAAA;EACA,aAAA;EACA,kBAAA;EACA,cAAA;ACPZ;ADQY;EACI,WAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,iBAAA;EACA,eAAA;ACNhB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;EACA,eAAA;EACA,WAAA;ACLpB;ADOgB;EACI,yBAAA;EACA,WAAA;ACLpB;ADSY;EACI,sBAAA;EACA,aAAA;EACA,kBAAA;ACPhB;ADQgB;EACI,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,eAAA;EACA,mBAAA;ACNpB;ADOoB;EACI,gBAAA;ACLxB;ADSgB;EACI,eAAA;EACA,6BAAA;ACPpB;ADQoB;EACI,eAAA;ACNxB;ADQoB;;;;EAEA,wBAAA;EACA,SAAA;ACJpB;ADQoB;EACI,UAAA;ACNxB;ADQoB;EACI,kBAAA;ACNxB;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,UAAA;EACA,UAAA;EACA,gBAAA;ACL5B;ADOwB;EACI,kBAAA;EACA,QAAA;EACA,2BAAA;EACA,WAAA;EACA,UAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;ACL5B;ADQoB;EACI,YAAA;EACA,gBAAA;ACNxB;ADUY;EACI,aAAA;EACA,sBAAA;EACA,gBAAA;ACRhB;ADSgB;EACI,aAAA;EACA,mBAAA;EACA,cAAA;ACPpB;ADQoB;EACI,YAAA;EACA,eAAA;EACA,gBAAA;ACNxB;ADQoB;EACI,YAAA;ACNxB;ADQoB;EACI,WAAA;EACA,YAAA;EACA,SAAA;EACA,kBAAA;EACA,gBAAA;ACNxB;;ADcA;EACI,4BAAA;EACA,WAAA;ACXJ;ADYI;EACI,gBAAA;ACVR;ADYI;EACI,yBAAA;ACVR;;ADcA;EACI,eAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,aAAA;EACA,oCAAA;EACA,UAAA;EACA,aAAA;EACA,aAAA;ACXJ;ADYI;EACI;IACI,gCAAA;IACA,UAAA;ECVV;EDYM;IACI,gCAAA;IACA,UAAA;ECVV;AACF;ADYI;EACI,sBAAA;ACVR;ADYI;EACI,cAAA;ACVR;ADYI;EACI,yBAAA;ACVR;ADYI;EACI,gBAAA;ACVR;ADWQ;EACI,aAAA;EACA,kBAAA;ACTZ;ADYI;EACI,iBAAA;EACA,YAAA;ACVR;ADWQ;EACI,YAAA;ACTZ;ADYI;EACI,UAAA;EACA,sBAAA;EACA,mBAAA;EACA,kBAAA;EACA,aAAA;EACA,aAAA;EACA,QAAA;EACA,SAAA;EACA,gCAAA;EACA,0BAAA;EACA,8BAAA;ACVR;ADWQ;EACI,aAAA;ACTZ;ADWQ;EACI,YAAA;ACTZ;ADWQ;EACI,YAAA;ACTZ;ADWQ;EACI,aAAA;EACA,sBAAA;ACTZ;ADUY;EACI,kBAAA;EACA,SAAA;EACA,WAAA;EACA,6BAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;ACRhB;ADUY;EACI,YAAA;ACRhB;ADYI;EACI,kBAAA;EACA,MAAA;EACA,OAAA;EACA,WAAA;EACA,YAAA;EACA,6BAAA;ACVR;;ADeI;EACI,yBAAA;EACA,mBAAA;EACA,aAAA;ACZR;ADaQ;EACI,gBAAA;ACXZ;ADaQ;EACI,sBAAA;ACXZ;ADaQ;EACI,uBAAA;ACXZ;ADYY;EACI,uBAAA;ACVhB;ADcY;EACI,yBAAA;ACZhB;ADgBY;EACI,gBAAA;ACdhB;ADgBY;EACI,yBAAA;EACA,mBAAA;EACA,iBAAA;EACA,eAAA;ACdhB;ADgBY;EACI,eAAA;ACdhB;ADegB;EACI,eAAA;EACA,gBAAA;ACbpB;ADegB;EACI,WAAA;EACA,aAAA;EACA,cAAA;EACA,sBAAA;ACbpB", + "file": "pricereview.css" +} +>>>>>>> 3ca7276d197f3d77f11e3719294215e04a32dc62 diff --git a/wms/mkt/css/pricereview.scss b/wms/mkt/css/pricereview.scss index 4f2df50f..2e9a0c07 100644 --- a/wms/mkt/css/pricereview.scss +++ b/wms/mkt/css/pricereview.scss @@ -1,41 +1,61 @@ -#pricereviewCreate{ - input[type='text'], input[type='number'], select{ +#pricereviewCreate { + + input[type='text'], + input[type='number'], + select { margin: 1px; } - textarea{ + + textarea { resize: vertical; } - >.modal{ + + >.modal { padding: 20px; - table, th, td{ - border:1px #ccc solid; + + table, + th, + td { + border: 1px #ccc solid; } - table > thead tr th{ - color:#A52A2A; + + table>thead tr th { + color: #A52A2A; } - table > tbody .selected{ + + table>tbody .selected { background-color: #E7FEFB; } - table > tbody .selected td{ - } + + table>tbody .selected td {} } - .container{ - table, th, td{ - border:1px #ccc solid; + + .container { + + table, + th, + td { + border: 1px #ccc solid; padding: 15px; - &.noborder, .noborder th, .noborder td{ - border:none; + + &.noborder, + .noborder th, + .noborder td { + border: none; } } - table{ - thead th{ + + table { + thead th { background-color: #6D9EEB; } + tbody { - td input{ + td input { font-size: 14px; } - th{ + + th { background-color: #CCE4F8; font-size: 14px; padding: 15px 2px; @@ -43,121 +63,152 @@ text-align: center; } } - input{ + + input { font-size: 13px; } } - .pricreviewmain{ + + .pricreviewmain { background-color: #F2F2F2; padding: 20px; - border-radius: 6px ; - margin:30px 0; - button{ - color:#fff; + border-radius: 6px; + margin: 30px 0; + + button { + color: #fff; width: 55px; height: 30px; padding: 0; margin-left: 6px; margin-bottom: 2px; font-size: 13px; - &.addbtn{ + + &.addbtn { background-color: #337AB7; width: 30px; } - &.deleteBtn{ + + &.deleteBtn { background-color: #D9534F; - color:#fff; + color: #fff; font-size: 12px; width: 30px; } - &.selectElevator{ + + &.selectElevator { background-color: #D9534F; - color:#fff; + color: #fff; } } - - >.divitem{ - border:1px #ccc solid; + + >.divitem { + border: 1px #ccc solid; padding: 10px; - border-radius: 4px ; - .title{ + border-radius: 4px; + + .title { display: flex; align-items: center; border-bottom: 1px #ccc solid; padding: 10px 0; margin-bottom: 10px; - h6{ + + h6 { font-weight: 600; } - + } - table, th, td{ + + table, + th, + td { font-size: 14px; background-color: transparent; - input, select, textarea{ + + input, + select, + textarea { font-size: 13px; } + input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { - -webkit-appearance: none; - margin: 0; + -webkit-appearance: none; + margin: 0; } } + table { - tr:hover .deleteBtn ,tr:hover .copyBtn{ + + tr:hover .deleteBtn, + tr:hover .copyBtn { opacity: 1; } +<<<<<<< HEAD .copyBtn{ width: 30px; height: 30px; } .saletd{ +======= + + .saletd { +>>>>>>> 3ca7276d197f3d77f11e3719294215e04a32dc62 position: relative; - >.deleteBtn{ + + >.deleteBtn { position: absolute; top: 50%; transform: translateY(-50%); - right:2px; + right: 2px; opacity: 0; transition: .3s; } - >.copyBtn{ + + >.copyBtn { position: absolute; top: 50%; transform: translateY(-50%); - right:38px; + right: 38px; opacity: 0; transition: .3s; width: 30px; height: 30px; } } - textarea{ + + textarea { height: auto; min-height: 50px; } } } - >.filediv{ + + >.filediv { display: flex; flex-direction: column; margin-top: 20px; - label{ + + label { display: flex; align-items: center; - margin:10px 0; - p{ - width:100px; + margin: 10px 0; + + p { + width: 100px; font-size: 15px; font-weight: 600; } - input[type="file"]{ - width:400px + + input[type="file"] { + width: 400px } - button{ - width:90px; + + button { + width: 90px; height: 35px; - margin:0; + margin: 0; margin-right: 15px; margin-top: 20px; } @@ -167,72 +218,73 @@ } } -.container-fluid, .container{ - max-width:1400px !important; +.container-fluid, +.container { + max-width: 1400px !important; width: 100%; - h4{ + + h4 { font-weight: 600; } - .btn-secondary{ + + .btn-secondary { background-color: #6C757D; } } -.window-modal{ +.window-modal { position: fixed; top: 0; - left:0; + left: 0; width: 100%; height: 100vh; background-color: rgba(0, 0, 0, 0.5); z-index: 9; padding: 20px; display: none; + @keyframes fade-in { - 0%{ - transform: translate(-50%, -60%); + 0% { + transform: translate(-50%, -55%); opacity: 0; } - 100%{ - transform: translate(-50%, -55%); + + 100% { + transform: translate(-50%, -50%); opacity: 1; } } - table, th, td{ - border:1px #ccc solid; + + table, + th, + td { + border: 1px #ccc solid; } - table > thead tr th{ - color:#A52A2A; + + table>thead tr th { + color: #A52A2A; } - table > tbody .selected{ + + table>tbody .selected { background-color: #E7FEFB; } - &#optionModal .window-modal-content{ - max-height: 80vh; - .window-modal-body{ - height: 400px; - overflow-y: scroll; - } - } - &#toElevatorModal .window-modal-content{ - min-height: 270px; - height: auto; - .window-modal-body{ - height: auto; - } - } - .window-modal-content{ - z-index: 9; + + .window-modal-content { background-color: #fff; border-radius: 10px; position: absolute; +<<<<<<< HEAD width:90%; +======= + width: 1200px; +>>>>>>> 3ca7276d197f3d77f11e3719294215e04a32dc62 padding: 30px; top: 50%; - left:50%; - transform: translate(-50%, -55%); + left: 50%; + transform: translate(-50%, -50%); box-shadow: 0 5px 5px #222; animation: fade-in .2s linear; +<<<<<<< HEAD &.modal-xl{ max-width:1200px; } @@ -241,80 +293,106 @@ } &.modal-m{ max-width:450px; +======= + + &.modal-xl { + width: 1200px; } - .window-modal-header{ + + &.modal-lg { + width: 800px; + } + + &.modal-m { + width: 400px; +>>>>>>> 3ca7276d197f3d77f11e3719294215e04a32dc62 + } + + .window-modal-header { display: flex; flex-direction: column; - button.btn-close{ + + button.btn-close { position: absolute; top: 10px; - right:10px; + right: 10px; background-color: transparent; - border:none; + border: none; outline: none; border-radius: 50%; } - >div > input{ + + >div>input { width: 250px; } } - } - .window-back{ - position: absolute; - top: 0; - left:0; - width: 100%; - height: 100%; - background-color: transparent; + + .window-modal-body { + overflow-y: scroll; + height: 400px; + } } } -#pricereviewCheck{ - >.container{ +#pricereviewCheck { + >.container { background-color: #F2F2F2; border-radius: 15px; padding: 20px; - textarea{ + + textarea { resize: vertical; } - table, th, td{ - border:1px #ccc solid; + + table, + th, + td { + border: 1px #ccc solid; } - table.noborder{ - border:none !important; - th ,td{ - border:none !important; + + table.noborder { + border: none !important; + + th, + td { + border: none !important; } } - .customerinfo-table{ - input{ + + .customerinfo-table { + input { background-color: #EEE5E5; } } - .mi-table{ - th{ + + .mi-table { + th { font-weight: 600; } - input[type=text]{ + + input[type=text] { background-color: #EEEEEE; cursor: not-allowed; padding: 6px 12px; font-size: 14px; } - .mi-info{ + + .mi-info { font-size: 14px; - span{ + + span { font-size: 15px; font-weight: 600; } - .line{ + + .line { width: 100%; height: .5px; - margin:30px 0; + margin: 30px 0; background-color: #ccc; } } } } - + } \ No newline at end of file diff --git a/wms/mkt/pricereviewMaintainCreate.php b/wms/mkt/pricereviewMaintainCreate.php new file mode 100644 index 00000000..74b91ccf --- /dev/null +++ b/wms/mkt/pricereviewMaintainCreate.php @@ -0,0 +1,195 @@ +prepare($sql); +// $stmt->bindParam(':vol_no', $vol_no); +$stmt->execute(); +$hope_contract = $stmt->fetch(PDO::FETCH_ASSOC); + +$hope_customer_status = [ + 'A' => '有望簽約(已報價)', + 'B' => '觀望考慮(等待時機報價)', + 'C' => '在途合約', + 'D' => '已簽約', + 'N' => '無望簽約', +]; + +$salename = $hope_contract['salesman']; +$sql = "SELECT * FROM account WHERE accountid = :salename"; +$stmt = $conn->prepare($sql); +$stmt->bindParam(':salename', $salename); +$stmt->execute(); +$salename = $stmt->fetch(PDO::FETCH_ASSOC); +// echo '
';
+// print_r($hope_customer_status);
+// echo '
'; + + +?> + + + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
有望客戶基本資料
卷號客戶名稱負責人客戶來源
地址案件名稱市話 / 手機業主方聯繫人
營業員台數預定成交日有望客戶狀態
有望客戶狀態
+ + + + + + + + + +
洽商進度
+ +
+ + +
+
+
+

整機單價

+ +
+ + + + + + + + + + + + + + + + + + + + + +
項次電梯人乘/
載重
停數速度(m/min)保養月數保養次數(月)保養方式公司發布價(月)數量公司發布價(總價)售價(月)售價(總價)
+
+
+
+
+ + \ No newline at end of file