保存进度!

This commit is contained in:
2026-03-31 18:18:06 +08:00
parent 43b498de04
commit 313a02cdfc
8 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
drop table `Insurance_Bill`;
create Table `Insurance_Bill` (
`cxCaseId` varchar(30) not null comment '宸汐案件号',
`billId` varchar(30) not null comment '发票号',
`hospitalName` varchar(200) not null comment '医院名称',
`completeTime` char(10) not null comment '结案时间',
`inquiryStartTime` char(10) not null comment '就诊时间',
`inquiryEndTime` char(10) not null comment '出院时间',
`billTimes` char(10) comment '发票日期',
`insurancePayAmount` decimal(16,2) not null comment '医保支付金额(元)',
`selfPayAmountOne` decimal(16,2) not null comment '自付一',
`selfPayAmountTwo` decimal(16,2) not null comment '自付二',
`selfAmount` decimal(16,2) not null comment '自费',
`bnOtherAmount` decimal(16,2) comment '保内除外金额',
`bnReasonOne` varchar(1000) comment '保内除外金额原因',
`billAmount` decimal(16,2) not null comment '发票合计金额'
) DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '发票信息表'

View File

@@ -0,0 +1,18 @@
drop table `Insurance_Prescription`;
create table `Insurance_Prescription`
(
`cxCaseId` varchar(30) not null comment '宸汐案件号',
`drugName` varchar(200) comment '药品商品名',
`unit` varchar(100) comment '药品单位',
`dose` varchar(100) comment '药品剂量',
`frequency` varchar(100) comment '药品频次',
`factoryName` varchar(100) comment '厂商',
`spec` varchar(100) comment '规格',
`quantity` varchar(100) comment '数量',
`price` varchar(100) comment '单价',
`prescriptionTime` varchar(10) comment '开方日期',
`pharmacyName` varchar(100) comment '药房名称',
`otherAmount` decimal(16,2) comment '其他扣除费用',
`remark` varchar(1000) comment '备注(账单信息的备注)'
)
default charset=utf8mb4 comment='案件处方表'

View File

@@ -0,0 +1,11 @@
drop table `Insurance_Result`;
create table `Insurance_Result` (
`cxCaseId` varchar(30) not null comment '宸汐案件号',
`dutyName` varchar(100) not null comment '责任名称',
`rationalAmount` decimal(16, 2) not null comment '合理金额',
`localProportion` varchar(100) not null comment '赔付比例',
`outProportion` varchar(100) not null comment '异地报销比例',
`compensationAmount` decimal(16, 2) not null comment '赔付金额',
`payAmount` decimal(16, 2) not null comment '赔付金额',
`responsibilityAmount` decimal(16, 2) not null comment '责任赔付金额'
) default charset = utf8mb4 COLLATE = utf8mb4_0900_ai_ci COMMENT = '理算结果表'