|
@ -141,7 +141,13 @@ public class BaseDoctorInfoService extends BaseJpaService<BaseDoctorDO, BaseDoct
|
|
|
"\tp.req_fee as \"spzxFee\",\n" +
|
|
|
"\tv.req_fee as \"twzxFee\",\n" +
|
|
|
"\td.req_fee as \"xtzxFee\",\n" +
|
|
|
"\tg.req_fee as \"jyzxFee\"\n" +
|
|
|
"\tg.req_fee as \"jyzxFee\",\n" +
|
|
|
"\tm.charge_type as \"twfzType\",\n" +
|
|
|
"\tn.charge_type as \"spfzType\",\n" +
|
|
|
"\tp.charge_type as \"spzxType\",\n" +
|
|
|
"\tv.charge_type as \"twzxType\",\n" +
|
|
|
"\td.charge_type as \"xtzxType\",\n" +
|
|
|
"\tg.charge_type as \"jyzxType\"\n" +
|
|
|
" FROM " +
|
|
|
" base_doctor a " +
|
|
|
" JOIN base_doctor_hospital b ON a.id = b.doctor_code " +
|
|
@ -202,16 +208,24 @@ public class BaseDoctorInfoService extends BaseJpaService<BaseDoctorDO, BaseDoct
|
|
|
" d.disease_name AS \"diseaseName\", " +
|
|
|
" d.disease_code AS \"diseaseCode\", " +
|
|
|
" e.req_fee AS \"money\" ," +
|
|
|
" h.dept_type_code AS \"deptTypeCode\" ," +
|
|
|
"\tm.req_fee as \"twfzFee\",\n" +
|
|
|
"\tn.req_fee as \"spfzFee\",\n" +
|
|
|
"\tp.req_fee as \"spzxFee\",\n" +
|
|
|
"\tv.req_fee as \"twzxFee\",\n" +
|
|
|
"\tq.req_fee as \"xtzxFee\",\n" +
|
|
|
"\tg.req_fee as \"jyzxFee\"\n" +
|
|
|
"\tg.req_fee as \"jyzxFee\",\n" +
|
|
|
"\tm.charge_type as \"twfzType\",\n" +
|
|
|
"\tn.charge_type as \"spfzType\",\n" +
|
|
|
"\tp.charge_type as \"spzxType\",\n" +
|
|
|
"\tv.charge_type as \"twzxType\",\n" +
|
|
|
"\tq.charge_type as \"xtzxType\",\n" +
|
|
|
"\tg.charge_type as \"jyzxType\"\n" +
|
|
|
" FROM " +
|
|
|
" base_doctor a " +
|
|
|
" LEFT JOIN base_doctor_hospital b ON a.id = b.doctor_code " +
|
|
|
" LEFT JOIN base_doctor_mapping c ON a.id = c.doctor " +
|
|
|
" LEFT JOIN dict_hospital_dept h ON b.dept_code = h.code " +
|
|
|
" LEFT JOIN wlyy_doctor_special_disease d ON a.id = d.doctor_code " +
|
|
|
" LEFT JOIN wlyy_charge_dict e ON a.charge_type = e.charge_type " +
|
|
|
" LEFT JOIN wlyy_charge_dict m ON a.twfz_charge_type = m.charge_type\n" +
|