INSERT INTO maintenance_payment (
id, auxiliary_column, flow_number, serial_number, project_code, project_name,
year, month, day, date, project_content, management_office_amount,
management_office_seal, owners_committee_amount, audit_amount, owners_committee_seal,
report_department, fund_type_level1, fund_type_level2, building_or_all, maintenance_type,
quality_guarantee_period1, public_income_announcement, owners_committee_convention,
withdrawal_problem, problem_difficulty, available_withdrawal_date, quality_guarantee_period2,
quality_guarantee_ratio, quality_guarantee_amount, received_quality_guarantee,
planned_announcement_start, planned_announcement_end, published_announcement_start,
published_announcement_end, quota, owners_committee_resolution, owners_committee_consultation,
withdrawal_encountered_problem, shortage_or_arrears, road_name, lane, door, room,
door_room_number, owner_address, start_date, end_date
) VALUES (
#{id}, #{auxiliaryColumn}, #{flowNumber}, #{serialNumber}, #{projectCode}, #{projectName},
#{year}, #{month}, #{day}, #{date}, #{projectContent}, #{managementOfficeAmount},
#{managementOfficeSeal}, #{ownersCommitteeAmount}, #{auditAmount}, #{ownersCommitteeSeal},
#{reportDepartment}, #{fundTypeLevel1}, #{fundTypeLevel2}, #{buildingOrAll}, #{maintenanceType},
#{qualityGuaranteePeriod1}, #{publicIncomeAnnouncement}, #{ownersCommitteeConvention},
#{withdrawalProblem}, #{problemDifficulty}, #{availableWithdrawalDate}, #{qualityGuaranteePeriod2},
#{qualityGuaranteeRatio}, #{qualityGuaranteeAmount}, #{receivedQualityGuarantee},
#{plannedAnnouncementStart}, #{plannedAnnouncementEnd}, #{publishedAnnouncementStart},
#{publishedAnnouncementEnd}, #{quota}, #{ownersCommitteeResolution}, #{ownersCommitteeConsultation},
#{withdrawalEncounteredProblem}, #{shortageOrArrears}, #{roadName}, #{lane}, #{door}, #{room},
#{doorRoomNumber}, #{ownerAddress}, #{startDate}, #{endDate}
);
INSERT INTO maintenance_payment (
id, auxiliary_column, flow_number, serial_number, project_code, project_name,
year, month, day, date, project_content, management_office_amount,
management_office_seal, owners_committee_amount, audit_amount, owners_committee_seal,
report_department, fund_type_level1, fund_type_level2, building_or_all, maintenance_type,
quality_guarantee_period1, public_income_announcement, owners_committee_convention,
withdrawal_problem, problem_difficulty, available_withdrawal_date, quality_guarantee_period2,
quality_guarantee_ratio, quality_guarantee_amount, received_quality_guarantee,
planned_announcement_start, planned_announcement_end, published_announcement_start,
published_announcement_end, quota, owners_committee_resolution, owners_committee_consultation,
withdrawal_encountered_problem, shortage_or_arrears, road_name, lane, door, room,
door_room_number, owner_address, start_date, end_date,
first_planned_payment_amount, planned_payment_date, category, reimburser,
actual_payment_amount, actual_payment_date, payee_name, id_card_number,
bank_name, bank_account, remarks, acceptance_date, audit_date
) VALUES
(
#{po.id}, #{po.auxiliaryColumn}, #{po.flowNumber}, #{po.serialNumber}, #{po.projectCode}, #{po.projectName},
#{po.year}, #{po.month}, #{po.day}, #{po.date}, #{po.projectContent}, #{po.managementOfficeAmount},
#{po.managementOfficeSeal}, #{po.ownersCommitteeAmount}, #{po.auditAmount}, #{po.ownersCommitteeSeal},
#{po.reportDepartment}, #{po.fundTypeLevel1}, #{po.fundTypeLevel2}, #{po.buildingOrAll}, #{po.maintenanceType},
#{po.qualityGuaranteePeriod1}, #{po.publicIncomeAnnouncement}, #{po.ownersCommitteeConvention},
#{po.withdrawalProblem}, #{po.problemDifficulty}, #{po.availableWithdrawalDate}, #{po.qualityGuaranteePeriod2},
#{po.qualityGuaranteeRatio}, #{po.qualityGuaranteeAmount}, #{po.receivedQualityGuarantee},
#{po.plannedAnnouncementStart}, #{po.plannedAnnouncementEnd}, #{po.publishedAnnouncementStart},
#{po.publishedAnnouncementEnd}, #{po.quota}, #{po.ownersCommitteeResolution}, #{po.ownersCommitteeConsultation},
#{po.withdrawalEncounteredProblem}, #{po.shortageOrArrears}, #{po.roadName}, #{po.lane}, #{po.door}, #{po.room},
#{po.doorRoomNumber}, #{po.ownerAddress}, #{po.startDate}, #{po.endDate},
#{po.firstPlannedPaymentAmount}, #{po.plannedPaymentDate}, #{po.category}, #{po.reimburser},
#{po.actualPaymentAmount}, #{po.actualPaymentDate}, #{po.payeeName}, #{po.idCardNumber},
#{po.bankName}, #{po.bankAccount}, #{po.remarks}, #{po.acceptanceDate}, #{po.auditDate}
)