his_charge_models.go 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. package models
  2. type HisChargePrescriptionProject struct {
  3. ID int64 `gorm:"column:id" json:"id" form:"id"`
  4. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  5. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  6. Status int64 `gorm:"column:status" json:"status" form:"status"`
  7. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  8. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  9. Count string `gorm:"column:count" json:"count" form:"count"`
  10. Type int64 `gorm:"column:type" json:"type" form:"type"`
  11. Unit string `gorm:"column:unit" json:"unit" form:"unit"`
  12. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  13. HisChargeProject HisChargeProject `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"project"`
  14. HisChargeGoodInfo HisChargeGoodInfo `gorm:"ForeignKey:ProjectId;AssociationForeignKey:ID" json:"good_info"`
  15. ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
  16. }
  17. func (HisChargePrescriptionProject) TableName() string {
  18. return "his_prescription_project"
  19. }
  20. type HisChargeDoctorAdviceInfo struct {
  21. ID int64 `gorm:"column:id" json:"id" form:"id"`
  22. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  23. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  24. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  25. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  26. Status int64 `gorm:"column:status" json:"status" form:"status"`
  27. DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
  28. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  29. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  30. Drug Drug `gorm:"ForeignKey:ID;AssociationForeignKey:DrugId" json:"drug"`
  31. IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
  32. ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
  33. IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
  34. }
  35. func (HisChargeDoctorAdviceInfo) TableName() string {
  36. return "his_doctor_advice_info"
  37. }
  38. type HisChargeOrderInfo struct {
  39. ID int64 `gorm:"column:id" json:"id" form:"id"`
  40. OrderNumber string `gorm:"column:order_number" json:"order_number" form:"order_number"`
  41. AdviceId int64 `gorm:"column:advice_id" json:"advice_id" form:"advice_id"`
  42. DetItemFeeSumamt float64 `gorm:"column:det_item_fee_sumamt" json:"det_item_fee_sumamt" form:"det_item_fee_sumamt"`
  43. Cnt float64 `gorm:"column:cnt" json:"cnt" form:"cnt"`
  44. Pric float64 `gorm:"column:pric" json:"pric" form:"pric"`
  45. MedChrgitmType string `gorm:"column:med_chrgitm_type" json:"med_chrgitm_type" form:"med_chrgitm_type"`
  46. Status int64 `gorm:"column:status" json:"status" form:"status"`
  47. ChldMedcFlag string `gorm:"column:chld_medc_flag" json:"chld_medc_flag" form:"chld_medc_flag"`
  48. ChrgitmLv string `gorm:"column:chrgitm_lv" json:"chrgitm_lv" form:"chrgitm_lv"`
  49. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  50. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  51. Type int64 `gorm:"column:type" json:"type" form:"type"`
  52. FulamtOwnpayAmt float64 `gorm:"column:fulamt_ownpay_amt" json:"fulamt_ownpay_amt" form:"fulamt_ownpay_amt"`
  53. OverlmtAmt float64 `gorm:"column:overlmt_amt" json:"overlmt_amt" form:"overlmt_amt"`
  54. PreselfpayAmt float64 `gorm:"column:preselfpay_amt" json:"preselfpay_amt" form:"preselfpay_amt"`
  55. PricUplmtAmt float64 `gorm:"column:pric_uplmt_amt" json:"pric_uplmt_amt" form:"pric_uplmt_amt"`
  56. HisChargePrescriptionProject HisChargePrescriptionProject `gorm:"ForeignKey:ID;AssociationForeignKey:ProjectId" json:"project"`
  57. HisChargeDoctorAdviceInfo HisChargeDoctorAdviceInfo `gorm:"ForeignKey:AdviceId;AssociationForeignKey:ID" json:"advice"`
  58. }
  59. func (HisChargeOrderInfo) TableName() string {
  60. return "his_order_info"
  61. }
  62. type ChargePatient struct {
  63. ID int64 `gorm:"column:id" json:"id" form:"id"`
  64. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  65. Name string `gorm:"column:name" json:"name" form:"name"`
  66. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  67. Status int64 `gorm:"column:status" json:"status" form:"status"`
  68. HisChargeOrder []*HisChargeOrder `gorm:"ForeignKey:PatientID;AssociationForeignKey:ID" json:"orders"`
  69. }
  70. func (ChargePatient) TableName() string {
  71. return "xt_patients"
  72. }
  73. type SettlePatient struct {
  74. ID int64 `gorm:"column:id" json:"id" form:"id"`
  75. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  76. Name string `gorm:"column:name" json:"name" form:"name"`
  77. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  78. Status int64 `gorm:"column:status" json:"status" form:"status"`
  79. IdCardNo string `gorm:"column:id_card_no" json:"id_card_no" form:"id_card_no"`
  80. HisChargeSettleOrder []*HisChargeSettleOrder `gorm:"ForeignKey:PatientID;AssociationForeignKey:ID" json:"orders"`
  81. }
  82. func (SettlePatient) TableName() string {
  83. return "xt_patients"
  84. }
  85. type OrderHisPatient struct {
  86. ID int64 `gorm:"column:id" json:"id" form:"id"`
  87. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  88. Number string `gorm:"column:number" json:"number" form:"number"`
  89. SickType int64 `gorm:"column:sick_type" json:"sick_type" form:"sick_type"`
  90. }
  91. func (OrderHisPatient) TableName() string {
  92. return "his_patient"
  93. }
  94. type HisChargeOrder struct {
  95. ID int64 `gorm:"column:id" json:"id" form:"id"`
  96. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  97. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  98. SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
  99. Status int64 `gorm:"column:status" json:"status" form:"status"`
  100. Number string `gorm:"column:number" json:"number" form:"number"`
  101. OrderStatus int64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
  102. MdtrtId string `gorm:"column:mdtrt_id" json:"mdtrt_id" form:"mdtrt_id"`
  103. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  104. HifesPay float64 `gorm:"column:hifes_pay" json:"hifes_pay" form:"hifes_pay"`
  105. MafPay float64 `gorm:"column:maf_pay" json:"maf_pay" form:"maf_pay"`
  106. FundPaySumamt float64 `gorm:"column:fund_pay_sumamt" json:"fund_pay_sumamt" form:"fund_pay_sumamt"`
  107. AcctPay float64 `gorm:"column:acct_pay" json:"acct_pay" form:"acct_pay"`
  108. MedfeeSumamt float64 `gorm:"column:medfee_sumamt" json:"medfee_sumamt" form:"medfee_sumamt"`
  109. HifpPay float64 `gorm:"column:hifp_pay" json:"hifp_pay" form:"hifp_pay"`
  110. HifmiPay float64 `gorm:"column:hifmi_pay" json:"hifmi_pay" form:"hifmi_pay"`
  111. IsUploadDiagnose int64 `gorm:"column:is_upload_diagnose" json:"is_upload_diagnose" form:"is_upload_diagnose"`
  112. IsUploadOrderInfo int64 `gorm:"column:is_upload_order_info" json:"is_upload_order_info" form:"is_upload_order_info"`
  113. IsUploadSuccess int64 `gorm:"column:is_upload_success" json:"is_upload_success" form:"is_upload_success"`
  114. SetlTime string `gorm:"column:setl_time" json:"setl_time" form:"setl_time"`
  115. PsnCashPay float64 `gorm:"column:psn_cash_pay" json:"psn_cash_pay" form:"psn_cash_pay"`
  116. IsMedicineInsurance int64 `gorm:"column:is_medicine_insurance" json:"is_medicine_insurance" form:"is_medicine_insurance"`
  117. HisChargeOrderInfo []*HisChargeOrderInfo `gorm:"ForeignKey:OrderNumber;AssociationForeignKey:Number" json:"order_info"`
  118. Patients Patients `gorm:"ForeignKey:ID;AssociationForeignKey:PatientId" json:"patient"`
  119. CardDesc string `gorm:"card_desc" json:"card_desc" form:"card_desc"`
  120. }
  121. func (HisChargeOrder) TableName() string {
  122. return "his_order"
  123. }
  124. type HisChargeSettleOrder struct {
  125. ID int64 `gorm:"column:id" json:"id" form:"id"`
  126. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  127. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  128. SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
  129. Status int64 `gorm:"column:status" json:"status" form:"status"`
  130. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  131. Infcode int64 `gorm:"column:infcode" json:"infcode" form:"infcode"`
  132. WarnMsg string `gorm:"column:warn_msg" json:"warn_msg" form:"warn_msg"`
  133. Cainfo string `gorm:"column:cainfo" json:"cainfo" form:"cainfo"`
  134. ErrMsg string `gorm:"column:err_msg" json:"err_msg" form:"err_msg"`
  135. RespondTime string `gorm:"column:respond_time" json:"respond_time" form:"respond_time"`
  136. InfRefmsgid string `gorm:"column:inf_refmsgid" json:"inf_refmsgid" form:"inf_refmsgid"`
  137. OrderStatus int64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
  138. MdtrtId string `gorm:"column:mdtrt_id" json:"mdtrt_id" form:"mdtrt_id"`
  139. SetlId string `gorm:"column:setl_id" json:"setl_id" form:"setl_id"`
  140. Insutype string `gorm:"column:insutype" json:"insutype" form:"insutype"`
  141. PsnType string `gorm:"column:psn_type" json:"psn_type" form:"psn_type"`
  142. CvlservFlag string `gorm:"column:cvlserv_flag" json:"cvlserv_flag" form:"cvlserv_flag"`
  143. SetlTime string `gorm:"column:setl_time" json:"setl_time" form:"setl_time"`
  144. MdtrtCertType string `gorm:"column:mdtrt_cert_type" json:"mdtrt_cert_type" form:"mdtrt_cert_type"`
  145. MedType string `gorm:"column:med_type" json:"med_type" form:"med_type"`
  146. MedfeeSumamt float64 `gorm:"column:medfee_sumamt" json:"medfee_sumamt" form:"medfee_sumamt"`
  147. FulamtOwnpayAmt float64 `gorm:"column:fulamt_ownpay_amt" json:"fulamt_ownpay_amt" form:"fulamt_ownpay_amt"`
  148. OverlmtSelfPay float64 `gorm:"column:overlmt_self_pay" json:"overlmt_self_pay" form:"overlmt_self_pay"`
  149. PreselfpayAmt float64 `gorm:"column:preselfpay_amt" json:"preselfpay_amt" form:"preselfpay_amt"`
  150. InscpScpAmt float64 `gorm:"column:inscp_scp_amt" json:"inscp_scp_amt" form:"inscp_scp_amt"`
  151. ActPayDedc float64 `gorm:"column:act_pay_dedc" json:"act_pay_dedc" form:"act_pay_dedc"`
  152. HifpPay float64 `gorm:"column:hifp_pay" json:"hifp_pay" form:"hifp_pay"`
  153. CvlservPay float64 `gorm:"column:cvlserv_pay" json:"cvlserv_pay" form:"cvlserv_pay"`
  154. PoolPropSelfpay float64 `gorm:"column:pool_prop_selfpay" json:"pool_prop_selfpay" form:"pool_prop_selfpay"`
  155. HifesPay float64 `gorm:"column:hifes_pay" json:"hifes_pay" form:"hifes_pay"`
  156. HifmiPay float64 `gorm:"column:hifmi_pay" json:"hifmi_pay" form:"hifmi_pay"`
  157. HifobPay float64 `gorm:"column:hifob_pay" json:"hifob_pay" form:"hifob_pay"`
  158. MafPay float64 `gorm:"column:maf_pay" json:"maf_pay" form:"maf_pay"`
  159. OthPay float64 `gorm:"column:oth_pay" json:"oth_pay" form:"oth_pay"`
  160. FundPaySumamt float64 `gorm:"column:fund_pay_sumamt" json:"fund_pay_sumamt" form:"fund_pay_sumamt"`
  161. PsnPartAmt float64 `gorm:"column:psn_part_amt" json:"psn_part_amt" form:"psn_part_amt"`
  162. AcctPay float64 `gorm:"column:acct_pay" json:"acct_pay" form:"acct_pay"`
  163. PsnCashPay float64 `gorm:"column:psn_cash_pay" json:"psn_cash_pay" form:"psn_cash_pay"`
  164. HospPartAmt float64 `gorm:"column:hosp_part_amt" json:"hosp_part_amt" form:"hosp_part_amt"`
  165. Balc float64 `gorm:"column:balc" json:"balc" form:"balc"`
  166. AcctMulaidPay float64 `gorm:"column:acct_mulaid_pay" json:"acct_mulaid_pay" form:"acct_mulaid_pay"`
  167. MedinsSetlId string `gorm:"column:medins_setl_id" json:"medins_setl_id" form:"medins_setl_id"`
  168. ClrOptins string `gorm:"column:clr_optins" json:"clr_optins" form:"clr_optins"`
  169. ClrWay string `gorm:"column:clr_way" json:"clr_way" form:"clr_way"`
  170. ClrType string `gorm:"column:clr_type" json:"clr_type" form:"clr_type"`
  171. SetlDetail string `gorm:"column:setl_detail" json:"setl_detail" form:"setl_detail"`
  172. IsMedicineInsurance int64 `gorm:"column:is_medicine_insurance" json:"is_medicine_insurance" form:"is_medicine_insurance"`
  173. PType int64 `gorm:"column:p_type" json:"p_type" form:"p_type"`
  174. SettleType int64 `gorm:"column:settle_type" json:"settle_type" form:"settle_type"`
  175. SettleStartTime int64 `gorm:"column:settle_start_time" json:"settle_start_time" form:"settle_start_time"`
  176. SettleEndTime int64 `gorm:"column:settle_end_time" json:"settle_end_time" form:"settle_end_time"`
  177. IsPre int64 `gorm:"column:is_pre" json:"is_pre" form:"is_pre"`
  178. FaPiaoCode string `gorm:"column:fa_piao_code" json:"fa_piao_code" form:"fa_piao_code"`
  179. FaPiaoNumber string `gorm:"column:fa_piao_number" json:"fa_piao_number" form:"fa_piao_number"`
  180. CashPay string `gorm:"cash_pay" json:"cash_pay" form:"cash_pay"`
  181. BandCardPay string `gorm:"band_card_pay" json:"band_card_pay" form:"band_card_pay"`
  182. WechatPay string `gorm:"wechat_pay" json:"wechat_pay" form:"wechat_pay"`
  183. AliPay string `gorm:"ali_pay" json:"ali_pay" form:"ali_pay"`
  184. JifenPay string `gorm:"jifen_pay" json:"jifen_pay" form:"jifen_pay"`
  185. OthDesc string `gorm:"oth_desc" json:"oth_desc" form:"oth_desc"`
  186. IsUploadDiagnose int64 `gorm:"column:is_upload_diagnose" json:"is_upload_diagnose" form:"is_upload_diagnose"`
  187. IsUploadOrderInfo int64 `gorm:"column:is_upload_order_info" json:"is_upload_order_info" form:"is_upload_order_info"`
  188. IsUploadSuccess int64 `gorm:"column:is_upload_success" json:"is_upload_success" form:"is_upload_success"`
  189. SickName string `gorm:"sick_name" json:"sick_name" form:"sick_name"`
  190. CardDesc string `gorm:"card_desc" json:"card_desc" form:"card_desc"`
  191. //OrderHisPatient OrderHisPatient `gorm:"ForeignKey:Number;AssociationForeignKey:MdtrtId" json:"his"`
  192. }
  193. func (HisChargeSettleOrder) TableName() string {
  194. return "his_order"
  195. }
  196. type HisChargeProject struct {
  197. ID int64 `gorm:"column:id" json:"id" form:"id"`
  198. ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
  199. Unit string `gorm:"column:unit" json:"unit" form:"unit"`
  200. MedicalCoverage int64 `gorm:"column:medical_coverage" json:"medical_coverage" form:"medical_coverage"`
  201. CostClassify int64 `gorm:"column:cost_classify" json:"cost_classify" form:"cost_classify"`
  202. }
  203. func (HisChargeProject) TableName() string {
  204. return "xt_his_project"
  205. }
  206. type HisChargeGoodInfo struct {
  207. ID int64 `gorm:"column:id" json:"id" form:"id"`
  208. GoodName string `gorm:"column:good_name" json:"good_name" form:"good_name"`
  209. GoodUnit int64 `gorm:"column:good_unit" json:"good_unit"`
  210. SpecificationnName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
  211. RegisterNumber string `gorm:"column:register_number" json:"register_number" form:"register_number"`
  212. PackingUnit string `gorm:"column:packing_unit" json:"packing_unit" form:"packing_unit"`
  213. MedicalInsuranceLevel int64 `gorm:"column:medical_insurance_level" json:"medical_insurance_level" form:"medical_insurance_level"`
  214. }
  215. func (HisChargeGoodInfo) TableName() string {
  216. return "xt_good_information"
  217. }
  218. type HisLabelPrintInfo struct {
  219. ID int64 `gorm:"column:id" json:"id" form:"id"`
  220. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  221. Number string `gorm:"column:number" json:"number" form:"number"`
  222. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  223. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  224. DoctorId int64 `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
  225. Status int64 `gorm:"column:status" json:"status" form:"status"`
  226. ProjectName string `gorm:"column:project_name" json:"project_name" form:"project_name"`
  227. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  228. IsPrint int64 `gorm:"column:is_print" json:"is_print" form:"is_print"`
  229. RecordDate int64 `gorm:"column:record_date" json:"record_date" form:"record_date"`
  230. ItemId int64 `gorm:"column:item_id" json:"item_id" form:"item_id"`
  231. HisProjectTeam HisProjectTeam `gorm:"ForeignKey:ID;AssociationForeignKey:ItemId" json:"team"`
  232. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  233. PProjectId int64 `gorm:"column:p_project_id" json:"p_project_id" form:"p_project_id"`
  234. FeedetlSn string `gorm:"column:feedetl_sn" json:"feedetl_sn" form:"feedetl_sn"`
  235. DoctorName string `gorm:"column:doctor_name" json:"doctor_name" form:"doctor_name"`
  236. PatientName string `gorm:"column:patient_name" json:"patient_name" form:"patient_name"`
  237. }
  238. func (HisLabelPrintInfo) TableName() string {
  239. return "his_label_print_info"
  240. }
  241. type HisFapiaoRecord struct {
  242. ID int64 `gorm:"column:id" json:"id" form:"id"`
  243. FapiaoCode string `gorm:"column:fapiao_code" json:"fapiao_code" form:"fapiao_code"`
  244. FapiaoNumber string `gorm:"column:fapiao_number" json:"fapiao_number" form:"fapiao_number"`
  245. IsUse int64 `gorm:"column:is_use" json:"is_use" form:"is_use"`
  246. Status int64 `gorm:"column:status" json:"status" form:"status"`
  247. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  248. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  249. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  250. }
  251. func (HisFapiaoRecord) TableName() string {
  252. return "his_fapiao_record"
  253. }
  254. type GdybPsnNcdsRecord struct {
  255. ID int64 `gorm:"column:id" json:"id" form:"id"`
  256. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  257. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  258. PsnNo string `gorm:"column:psn_no" json:"psn_no" form:"psn_no"`
  259. Ctime int64 `gorm:"column:ctime" json:"ctime" form:"ctime"`
  260. Mtime int64 `gorm:"column:mtime" json:"mtime" form:"mtime"`
  261. Status int64 `gorm:"column:status" json:"status" form:"status"`
  262. IsCancel int64 `gorm:"column:is_cancel" json:"is_cancel" form:"is_cancel"`
  263. TrtDclaDetlSn string `gorm:"column:trt_dcla_detl_sn" json:"trt_dcla_detl_sn" form:"trt_dcla_detl_sn"`
  264. DoctorId int64 `gorm:"column:doctor_id" json:"doctor_id" form:"doctor_id"`
  265. DepartmentId int64 `gorm:"column:department_id" json:"department_id" form:"department_id"`
  266. Insutype string `gorm:"column:insutype" json:"insutype" form:"insutype"`
  267. SickType int64 `gorm:"column:sick_type" json:"sick_type" form:"sick_type"`
  268. OrgName string `gorm:"column:org_name" json:"org_name" form:"org_name"`
  269. }
  270. func (GdybPsnNcdsRecord) TableName() string {
  271. return "gdyb_psn_ncds_record"
  272. }
  273. type ChargePatientTwo struct {
  274. ID int64 `gorm:"column:id" json:"id" form:"id"`
  275. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  276. Name string `gorm:"column:name" json:"name" form:"name"`
  277. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  278. Status int64 `gorm:"column:status" json:"status" form:"status"`
  279. }
  280. func (ChargePatientTwo) TableName() string {
  281. return "xt_patients"
  282. }
  283. type HisChargeOrderTwo struct {
  284. ID int64 `gorm:"column:id" json:"id" form:"id"`
  285. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  286. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  287. SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
  288. Status int64 `gorm:"column:status" json:"status" form:"status"`
  289. Number string `gorm:"column:number" json:"number" form:"number"`
  290. OrderStatus int64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
  291. MdtrtId string `gorm:"column:mdtrt_id" json:"mdtrt_id" form:"mdtrt_id"`
  292. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  293. HisChargeOrderInfoTwo []*HisChargeOrderInfoTwo `gorm:"ForeignKey:OrderNumber;AssociationForeignKey:Number" json:"order_info"`
  294. CardDesc string `gorm:"card_desc" json:"card_desc" form:"card_desc"`
  295. }
  296. func (HisChargeOrderTwo) TableName() string {
  297. return "his_order"
  298. }
  299. type HisChargeOrderInfoTwo struct {
  300. ID int64 `gorm:"column:id" json:"id" form:"id"`
  301. OrderNumber string `gorm:"column:order_number" json:"order_number" form:"order_number"`
  302. AdviceId int64 `gorm:"column:advice_id" json:"advice_id" form:"advice_id"`
  303. DetItemFeeSumamt float64 `gorm:"column:det_item_fee_sumamt" json:"det_item_fee_sumamt" form:"det_item_fee_sumamt"`
  304. Cnt float64 `gorm:"column:cnt" json:"cnt" form:"cnt"`
  305. Pric float64 `gorm:"column:pric" json:"pric" form:"pric"`
  306. MedChrgitmType string `gorm:"column:med_chrgitm_type" json:"med_chrgitm_type" form:"med_chrgitm_type"`
  307. Status int64 `gorm:"column:status" json:"status" form:"status"`
  308. ChldMedcFlag string `gorm:"column:chld_medc_flag" json:"chld_medc_flag" form:"chld_medc_flag"`
  309. ChrgitmLv string `gorm:"column:chrgitm_lv" json:"chrgitm_lv" form:"chrgitm_lv"`
  310. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  311. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  312. Type int64 `gorm:"column:type" json:"type" form:"type"`
  313. HisChargePrescriptionProject HisChargePrescriptionProject `gorm:"ForeignKey:ID;AssociationForeignKey:ProjectId" json:"project"`
  314. HisChargeDoctorAdviceInfo HisChargeDoctorAdviceInfo `gorm:"ForeignKey:AdviceId;AssociationForeignKey:ID" json:"advice"`
  315. }
  316. func (HisChargeOrderInfoTwo) TableName() string {
  317. return "his_order_info"
  318. }
  319. type NewChargePatient struct {
  320. ID int64 `gorm:"column:id" json:"id" form:"id"`
  321. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  322. Name string `gorm:"column:name" json:"name" form:"name"`
  323. Lapseto int64 `gorm:"column:lapseto" json:"lapseto" form:"lapseto"`
  324. Status int64 `gorm:"column:status" json:"status" form:"status"`
  325. HisChargeOrder []*NewHisChargeOrder `gorm:"ForeignKey:PatientID;AssociationForeignKey:ID" json:"orders"`
  326. }
  327. func (NewChargePatient) TableName() string {
  328. return "xt_patients"
  329. }
  330. type NewChargeDetail struct {
  331. Cnt float64 `gorm:"column:cnt" json:"cnt" form:"cnt"`
  332. Pric float64 `gorm:"column:pric" json:"pric" form:"pric"`
  333. PName string `gorm:"column:p_name" json:"p_name" form:"p_name"`
  334. ItemName string `gorm:"column:item_name" json:"item_name" form:"item_name"`
  335. Dose string `gorm:"column:dose" json:"dose" form:"dose"`
  336. DoseUnit string `gorm:"column:dose_unit" json:"dose_unit" form:"dose_unit"`
  337. MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
  338. MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
  339. MaxUnit string `gorm:"column:max_unit" json:"max_unit" form:"max_unit"`
  340. DetItemFeeSumamt string `gorm:"column:det_item_fee_sumamt" json:"det_item_fee_sumamt" form:"det_item_fee_sumamt"`
  341. PId int64 `gorm:"column:p_id" json:"p_id" form:"p_id"`
  342. AdviceId int64 `gorm:"column:advice_id" json:"advice_id" form:"advice_id"`
  343. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  344. PType string `gorm:"column:p_type" json:"p_type" form:"p_type"`
  345. SpecificationName string `gorm:"column:specification_name" json:"specification_name" form:"specification_name"`
  346. ItemId int64 `gorm:"column:item_id" json:"item_id" form:"item_id"`
  347. Pdate string `gorm:"column:pdate" json:"pdate" form:"pdate"`
  348. CostClassify int64 `gorm:"column:cost_classify" json:"cost_classify" form:"cost_classify"`
  349. }
  350. type NewHisChargeOrder struct {
  351. ID int64 `gorm:"column:id" json:"id" form:"id"`
  352. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  353. HisPatientId int64 `gorm:"column:his_patient_id" json:"his_patient_id" form:"his_patient_id"`
  354. SettleAccountsDate int64 `gorm:"column:settle_accounts_date" json:"settle_accounts_date" form:"settle_accounts_date"`
  355. Status int64 `gorm:"column:status" json:"status" form:"status"`
  356. Number string `gorm:"column:number" json:"number" form:"number"`
  357. OrderStatus int64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
  358. MdtrtId string `gorm:"column:mdtrt_id" json:"mdtrt_id" form:"mdtrt_id"`
  359. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  360. HifesPay float64 `gorm:"column:hifes_pay" json:"hifes_pay" form:"hifes_pay"`
  361. MafPay float64 `gorm:"column:maf_pay" json:"maf_pay" form:"maf_pay"`
  362. FundPaySumamt float64 `gorm:"column:fund_pay_sumamt" json:"fund_pay_sumamt" form:"fund_pay_sumamt"`
  363. AcctPay float64 `gorm:"column:acct_pay" json:"acct_pay" form:"acct_pay"`
  364. MedfeeSumamt float64 `gorm:"column:medfee_sumamt" json:"medfee_sumamt" form:"medfee_sumamt"`
  365. HifpPay float64 `gorm:"column:hifp_pay" json:"hifp_pay" form:"hifp_pay"`
  366. HifmiPay float64 `gorm:"column:hifmi_pay" json:"hifmi_pay" form:"hifmi_pay"`
  367. IsUploadDiagnose int64 `gorm:"column:is_upload_diagnose" json:"is_upload_diagnose" form:"is_upload_diagnose"`
  368. IsUploadOrderInfo int64 `gorm:"column:is_upload_order_info" json:"is_upload_order_info" form:"is_upload_order_info"`
  369. IsUploadSuccess int64 `gorm:"column:is_upload_success" json:"is_upload_success" form:"is_upload_success"`
  370. SetlTime string `gorm:"column:setl_time" json:"setl_time" form:"setl_time"`
  371. PsnCashPay float64 `gorm:"column:psn_cash_pay" json:"psn_cash_pay" form:"psn_cash_pay"`
  372. IsMedicineInsurance int64 `gorm:"column:is_medicine_insurance" json:"is_medicine_insurance" form:"is_medicine_insurance"`
  373. HisChargeOrderInfo []*NewHisChargeOrderInfoTwo `gorm:"ForeignKey:OrderNumber;AssociationForeignKey:Number" json:"order_info"`
  374. CardDesc string `gorm:"card_desc" json:"card_desc" form:"card_desc"`
  375. }
  376. func (NewHisChargeOrder) TableName() string {
  377. return "his_order"
  378. }
  379. type NewHisChargeOrderInfoTwo struct {
  380. ID int64 `gorm:"column:id" json:"id" form:"id"`
  381. OrderNumber string `gorm:"column:order_number" json:"order_number" form:"order_number"`
  382. AdviceId int64 `gorm:"column:advice_id" json:"advice_id" form:"advice_id"`
  383. DetItemFeeSumamt float64 `gorm:"column:det_item_fee_sumamt" json:"det_item_fee_sumamt" form:"det_item_fee_sumamt"`
  384. Cnt float64 `gorm:"column:cnt" json:"cnt" form:"cnt"`
  385. Pric float64 `gorm:"column:pric" json:"pric" form:"pric"`
  386. MedChrgitmType string `gorm:"column:med_chrgitm_type" json:"med_chrgitm_type" form:"med_chrgitm_type"`
  387. Status int64 `gorm:"column:status" json:"status" form:"status"`
  388. ChldMedcFlag string `gorm:"column:chld_medc_flag" json:"chld_medc_flag" form:"chld_medc_flag"`
  389. ChrgitmLv string `gorm:"column:chrgitm_lv" json:"chrgitm_lv" form:"chrgitm_lv"`
  390. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  391. ProjectId int64 `gorm:"column:project_id" json:"project_id" form:"project_id"`
  392. Type int64 `gorm:"column:type" json:"type" form:"type"`
  393. FulamtOwnpayAmt float64 `gorm:"column:fulamt_ownpay_amt" json:"fulamt_ownpay_amt" form:"fulamt_ownpay_amt"`
  394. OverlmtAmt float64 `gorm:"column:overlmt_amt" json:"overlmt_amt" form:"overlmt_amt"`
  395. PreselfpayAmt float64 `gorm:"column:preselfpay_amt" json:"preselfpay_amt" form:"preselfpay_amt"`
  396. PricUplmtAmt float64 `gorm:"column:pric_uplmt_amt" json:"pric_uplmt_amt" form:"pric_uplmt_amt"`
  397. HisChargePrescriptionProject HisChargePrescriptionProject `gorm:"ForeignKey:ID;AssociationForeignKey:ProjectId" json:"project"`
  398. HisChargeDoctorAdviceInfo NewHisChargeDoctorAdviceInfo `gorm:"ForeignKey:AdviceId;AssociationForeignKey:ID" json:"advice"`
  399. }
  400. func (NewHisChargeOrderInfoTwo) TableName() string {
  401. return "his_order_info"
  402. }
  403. type NewDrug struct {
  404. ID int64 `gorm:"column:id" json:"id" form:"id"`
  405. DrugName string `gorm:"column:drug_name" json:"drug_name" form:"drug_name"`
  406. MaxUnit string `gorm:"column:max_unit" json:"max_unit" form:"max_unit"`
  407. MinNumber int64 `gorm:"column:min_number" json:"min_number" form:"min_number"`
  408. MinUnit string `gorm:"column:min_unit" json:"min_unit" form:"min_unit"`
  409. Dose string `gorm:"column:dose" json:"dose" form:"dose"`
  410. DoseUnit string `gorm:"column:dose_unit" json:"dose_unit" form:"dose_unit"`
  411. RetailPrice float64 `gorm:"column:retail_price" json:"retail_price" form:"retail_price"`
  412. DrugDose float64 `gorm:"column:drug_dose" json:"drug_dose" form:"drug_dose"`
  413. DrugDoseUnit int64 `gorm:"column:drug_dose_unit" json:"drug_dose_unit" form:"drug_dose_unit"`
  414. IsZeroFlag int64 `gorm:"column:is_zero_flag" json:"is_zero_flag" form:"is_zero_flag"`
  415. }
  416. func (NewDrug) TableName() string {
  417. return "xt_base_drug"
  418. }
  419. type NewHisChargeDoctorAdviceInfo struct {
  420. ID int64 `gorm:"column:id" json:"id" form:"id"`
  421. UserOrgId int64 `gorm:"column:user_org_id" json:"user_org_id" form:"user_org_id"`
  422. PatientId int64 `gorm:"column:patient_id" json:"patient_id" form:"patient_id"`
  423. AdviceName string `gorm:"column:advice_name" json:"advice_name" form:"advice_name"`
  424. PrescribingNumberUnit string `gorm:"column:prescribing_number_unit" json:"prescribing_number_unit" form:"prescribing_number_unit"`
  425. Status int64 `gorm:"column:status" json:"status" form:"status"`
  426. DrugId int64 `gorm:"column:drug_id" json:"drug_id" form:"drug_id"`
  427. Remark string `gorm:"column:remark" json:"remark" form:"remark"`
  428. AdviceDate int64 `gorm:"column:advice_date" json:"advice_date" form:"advice_date"`
  429. Drug NewDrug `gorm:"ForeignKey:ID;AssociationForeignKey:DrugId" json:"drug"`
  430. IsMedicine int64 `gorm:"column:is_medicine" json:"is_medicine" form:"is_medicine"`
  431. ExecutionFrequencyId int64 `gorm:"column:execution_frequency_id" json:"execution_frequency_id" form:"execution_frequency_id"`
  432. IsSelfDrug int64 `gorm:"column:is_self_drug" json:"is_self_drug" form:"is_self_drug"`
  433. }
  434. func (NewHisChargeDoctorAdviceInfo) TableName() string {
  435. return "his_doctor_advice_info"
  436. }
  437. type NewPDetail struct {
  438. PType string `gorm:"column:p_type" json:"p_type" form:"p_type"`
  439. PName string `gorm:"column:p_name" json:"p_name" form:"p_name"`
  440. RecordDate string `gorm:"column:record_date" json:"record_date" form:"record_date"`
  441. ItemCostType int64 `gorm:"column:item_cost_type" json:"item_cost_type" form:"item_cost_type"`
  442. MedType int64 `gorm:"column:med_type" json:"med_type" form:"med_type"`
  443. Cnt float64 `gorm:"column:cnt" json:"cnt" form:"cnt"`
  444. Pric float64 `gorm:"column:pric" json:"pric" form:"pric"`
  445. ItemName string `gorm:"column:item_name" json:"item_name" form:"item_name"`
  446. Spec string `gorm:"column:spec" json:"spec" form:"spec"`
  447. OrderStatus int64 `gorm:"column:order_status" json:"order_status" form:"order_status"`
  448. Unit string `gorm:"column:unit" json:"unit" form:"unit"`
  449. SetlTime string `gorm:"column:setl_time" json:"setl_time" form:"setl_time"`
  450. PId string `gorm:"column:p_id" json:"p_id" form:"p_id"`
  451. AdviceId string `gorm:"column:advice_id" json:"advice_id" form:"advice_id"`
  452. ProjectId string `gorm:"column:project_id" json:"project_id" form:"project_id"`
  453. ItemId string `gorm:"column:item_id" json:"item_id" form:"item_id"`
  454. //SetlTime string `gorm:"column:setl_time" json:"setl_time" form:"setl_time"`
  455. }