es建表语句.sql 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919
  1. -- 创建ES表。
  2. DROP TABLE IF EXISTS shanglifeecif.individual;
  3. CREATE TABLE shanglifeecif.individual(
  4. indid string DEFAULT NULL COMMENT '个体ID',
  5. custid string DEFAULT NULL COMMENT '客户号 本系统统一生成的全司范围的唯一标识',
  6. scustid string DEFAULT NULL COMMENT '上游客户号 上游系统的客户ID',
  7. name string DEFAULT NULL COMMENT '名称 T_CUSTOMER_CLASS.CUSTOMER_NAME',
  8. birthday string DEFAULT NULL COMMENT '出生日期 T_CUSTOMER_CLASS.BIRTHDATE',
  9. nobirth string DEFAULT NULL COMMENT '出生国家',
  10. sobirth string DEFAULT NULL COMMENT '出生省份',
  11. cobirth string DEFAULT NULL COMMENT '出生城市',
  12. dday string DEFAULT NULL COMMENT '死亡日期',
  13. gender string DEFAULT NULL COMMENT '性别',
  14. ethnic string DEFAULT NULL COMMENT '民族',
  15. nation string DEFAULT NULL COMMENT '国籍',
  16. homeadress string DEFAULT NULL COMMENT '籍贯 UNDERWRITE_REPORT_LIST.POLICY_HOLDER_ADDRESS',
  17. regresidence string DEFAULT NULL COMMENT '户口所在地',
  18. maritalstat string DEFAULT NULL COMMENT '婚姻状况 一对多',
  19. maritalstatdate string DEFAULT NULL COMMENT '婚姻状况日期 一对多',
  20. offspring string DEFAULT NULL COMMENT '生育状况',
  21. support string DEFAULT NULL COMMENT '赡养状况',
  22. empstat string DEFAULT NULL COMMENT '就业状况 一对多',
  23. empstatdate string DEFAULT NULL COMMENT '就业状况日期 一对多',
  24. raid string DEFAULT NULL COMMENT '联系地址',
  25. ral string DEFAULT NULL COMMENT '联系地址不分段',
  26. al string DEFAULT NULL COMMENT '曾用地址不分段',
  27. coadress int DEFAULT NULL COMMENT '地址登录数量',
  28. pmphone string DEFAULT NULL COMMENT '常用手机 正在使用的手机',
  29. mhone1 string DEFAULT NULL COMMENT '曾用手机1',
  30. mhone2 string DEFAULT NULL COMMENT '曾用手机2',
  31. sophone int DEFAULT NULL COMMENT '手机登录数量',
  32. height double DEFAULT NULL COMMENT '身高',
  33. weight double DEFAULT NULL COMMENT '体重',
  34. cillness string DEFAULT NULL COMMENT '当前疾病',
  35. pillness string DEFAULT NULL COMMENT '曾患疾病',
  36. cdiseases string DEFAULT NULL COMMENT '先天性疾病',
  37. bmi double DEFAULT NULL COMMENT 'BMI体制指数',
  38. fmhistory string DEFAULT NULL COMMENT '家族病史',
  39. evadate string DEFAULT NULL COMMENT '健康评估日期',
  40. cohevaluation int DEFAULT NULL COMMENT '健康评估登录数量',
  41. hphone string DEFAULT NULL COMMENT '家庭电话',
  42. occupationid string DEFAULT NULL COMMENT '职业代码 UNDERWRITE_REPORT_LIST.POLICY_HOLDER_CODE',
  43. occupation string DEFAULT NULL COMMENT '职业名称 UNDERWRITE_REPORT_LIST.POLICY_HOLDER_NAME',
  44. odate string DEFAULT NULL COMMENT '职业时间 一对多',
  45. employer string DEFAULT NULL COMMENT '工作单位',
  46. wphone string DEFAULT NULL COMMENT '工作电话',
  47. empdate string DEFAULT NULL COMMENT '工作单位时间',
  48. lemployer string DEFAULT NULL COMMENT '曾经工作单位',
  49. idcard string DEFAULT NULL COMMENT '身份证',
  50. passport string DEFAULT NULL COMMENT '护照',
  51. dlicense string DEFAULT NULL COMMENT '驾驶证',
  52. otheridnumber string DEFAULT NULL COMMENT '其它证件号码',
  53. education string DEFAULT NULL COMMENT '最高学历',
  54. university string DEFAULT NULL COMMENT '毕业学校',
  55. edate string DEFAULT NULL COMMENT '学历时间',
  56. wechat string DEFAULT NULL COMMENT '微信',
  57. weibo string DEFAULT NULL COMMENT '微博',
  58. email string DEFAULT NULL COMMENT '邮箱',
  59. qq string DEFAULT NULL COMMENT 'QQ',
  60. tiktok string DEFAULT NULL COMMENT '抖音',
  61. saccount1 string DEFAULT NULL COMMENT '社交账号1',
  62. sa1cat string DEFAULT NULL COMMENT '社交账号1类别',
  63. saccount2 string DEFAULT NULL COMMENT '社交账号2',
  64. sa2cat string DEFAULT NULL COMMENT '社交账号2类别',
  65. ctype string DEFAULT NULL COMMENT '首选联系方式 手机,微信,微博,邮箱,QQ,抖音,其他',
  66. father string DEFAULT NULL COMMENT '父亲 HEALTH_INSURANCE_LISTING.INSUREDNAMEHEALTH_INSURANCE_LISTING.RELATION:投保人与被保人关系',
  67. mother string DEFAULT NULL COMMENT '母亲',
  68. mate string DEFAULT NULL COMMENT '配偶',
  69. child1 string DEFAULT NULL COMMENT '子女1',
  70. child2 string DEFAULT NULL COMMENT '子女2',
  71. cochild int DEFAULT NULL COMMENT '子女登录数量',
  72. rpid string DEFAULT NULL COMMENT '房产',
  73. rpdescribe string DEFAULT NULL COMMENT '房产描述',
  74. corp int DEFAULT NULL COMMENT '房产登录数量',
  75. vid string DEFAULT NULL COMMENT '车辆',
  76. vdescribe string DEFAULT NULL COMMENT '车辆描述',
  77. covehicle int DEFAULT NULL COMMENT '车辆登录数量',
  78. anniversary1 string DEFAULT NULL COMMENT '纪念日1',
  79. a1describe string DEFAULT NULL COMMENT '纪念日1类型',
  80. anniversary2 string DEFAULT NULL COMMENT '纪念日2',
  81. a2describe string DEFAULT NULL COMMENT '纪念日2类型',
  82. soanniversary int DEFAULT NULL COMMENT '纪念日登录数量',
  83. custtype string DEFAULT NULL COMMENT '客户类型',
  84. bankname string DEFAULT NULL COMMENT '开户银行',
  85. tobankcard string DEFAULT NULL COMMENT '银行卡类型 如:master、visa、银联等。',
  86. accname string DEFAULT NULL COMMENT '账户名',
  87. bankaccno string DEFAULT NULL COMMENT '银行帐号',
  88. cobaccount int DEFAULT NULL COMMENT '账户登录数量',
  89. sotlirisk double DEFAULT NULL COMMENT '传统寿险种保额合计',
  90. soairisk double DEFAULT NULL COMMENT '意外类险种保额合计',
  91. sosiirisk double DEFAULT NULL COMMENT '重疾类险种保额合计',
  92. somcirisk double DEFAULT NULL COMMENT '医疗费用类险种保额合计',
  93. someirisk double DEFAULT NULL COMMENT '医疗补贴类险种保额合计',
  94. soefirisk double DEFAULT NULL COMMENT '教育金类险种保额合计',
  95. sopirisk double DEFAULT NULL COMMENT '养老金类险种保额合计',
  96. sowmirisk double DEFAULT NULL COMMENT '财富管理险种保额合计',
  97. custclass int DEFAULT NULL COMMENT '等级',
  98. convalue int DEFAULT NULL COMMENT '贡献度分',
  99. awarded3 int DEFAULT NULL COMMENT '家庭加分',
  100. awarded2 int DEFAULT NULL COMMENT '续期加分',
  101. awarded1 int DEFAULT NULL COMMENT '保单加分',
  102. sovalue int DEFAULT NULL COMMENT '总分值',
  103. enddate string DEFAULT NULL COMMENT '客户等级失效日期',
  104. systemtag1 string DEFAULT NULL COMMENT '系统标签域1',
  105. systemtag2 string DEFAULT NULL COMMENT '系统标签域2',
  106. systemtag3 string DEFAULT NULL COMMENT '系统标签域3',
  107. systemtag4 string DEFAULT NULL COMMENT '系统标签域4',
  108. systemtag5 string DEFAULT NULL COMMENT '系统标签域5',
  109. cocommunication int DEFAULT NULL COMMENT '接触次数',
  110. lcdate string DEFAULT NULL COMMENT '最近接触时间',
  111. lctype string DEFAULT NULL COMMENT '最近接触类型 投诉、问询、营销',
  112. lcmethod string DEFAULT NULL COMMENT '最近接触方式 外呼、呼入',
  113. cocomplaint int DEFAULT NULL COMMENT '投诉次数 当前客户投保保单相关投诉,包括非本人投诉',
  114. lcptdate string DEFAULT NULL COMMENT '最近投诉时间 当前客户投保保单相关投诉,包括非本人投诉',
  115. lcptreason string DEFAULT NULL COMMENT '最近投诉原因 当前客户投保保单相关投诉,包括非本人投诉',
  116. lcptlink string DEFAULT NULL COMMENT '最近投诉环节 当前客户投保保单相关投诉,包括非本人投诉',
  117. lcptresult string DEFAULT NULL COMMENT '最近投诉处理结果 当前客户投保保单相关投诉,包括非本人投诉',
  118. lcptduration double DEFAULT NULL COMMENT '最近投诉处理时长 当前客户投保保单相关投诉,包括非本人投诉',
  119. lcptperson string DEFAULT NULL COMMENT '最近投诉人',
  120. soppremium double DEFAULT NULL COMMENT '累计已缴保费',
  121. lappdate string DEFAULT NULL COMMENT '最近投保日期',
  122. cndate string DEFAULT NULL COMMENT '最近报案日期',
  123. cnstatus string DEFAULT NULL COMMENT '最近报案状态',
  124. coclaim int DEFAULT NULL COMMENT '赔付次数',
  125. soclaim double DEFAULT NULL COMMENT '赔付总额',
  126. cocnotification int DEFAULT NULL COMMENT '报案登录数量',
  127. fadate string DEFAULT NULL COMMENT '首次投保日期 当前客户为投保人时',
  128. fachannel string DEFAULT NULL COMMENT '首张保单所属渠道 InsuranceArrangement.AgentChannel',
  129. faorg string DEFAULT NULL COMMENT '首张保单所属机构 InsuranceArrangement.AgentOrg',
  130. lpno string DEFAULT NULL COMMENT '最近保险单号 当前客户为投保人时',
  131. lpstate string DEFAULT NULL COMMENT '最近保单状态 当前客户为投保人时',
  132. lpname string DEFAULT NULL COMMENT '最近投保险种名称 当前客户为投保人时',
  133. lpchannel string DEFAULT NULL COMMENT '最近保单所属渠道 InsuranceArrangement.AgentChannel',
  134. lporg string DEFAULT NULL COMMENT '最近保单所属机构 InsuranceArrangement.AgentOrg',
  135. copolicy int DEFAULT NULL COMMENT '保单登录数量',
  136. lpostype string DEFAULT NULL COMMENT '最近保全类型 AUDIT_EDORLIST.EDORNAME',
  137. iaccno1 string DEFAULT NULL COMMENT '保险账户1',
  138. iaccname1 string DEFAULT NULL COMMENT '保险账户1名称',
  139. iaccno2 string DEFAULT NULL COMMENT '保险账户2',
  140. iaccname2 string DEFAULT NULL COMMENT '保险账户2名称',
  141. iaccno3 string DEFAULT NULL COMMENT '保险账户3',
  142. iaccname3 string DEFAULT NULL COMMENT '保险账户3名称',
  143. soiaccount1 double DEFAULT NULL COMMENT '保险账户1余额',
  144. soiaccount2 double DEFAULT NULL COMMENT '保险账户2余额',
  145. soiaccount3 double DEFAULT NULL COMMENT '保险账户3余额',
  146. coiaccount int DEFAULT NULL COMMENT '保险账户登录数量',
  147. homeid string DEFAULT NULL COMMENT '家庭号 大数据平台HOME_NETWORK',
  148. branchcode string DEFAULT NULL COMMENT '机构代码 数据归属机构,用于权限控制',
  149. custstate string DEFAULT NULL COMMENT '客户状态 party可能会合并导致当前记录不再可用',
  150. datasource string DEFAULT NULL COMMENT '数据来源',
  151. smoking string DEFAULT NULL COMMENT '吸烟情况 从不、戒烟、吸烟',
  152. drinking string DEFAULT NULL COMMENT '饮酒情况 从不、戒酒、饮酒',
  153. pregnancy string DEFAULT NULL COMMENT '怀孕情况',
  154. hobby1 string DEFAULT NULL COMMENT '兴趣爱好1',
  155. hobby2 string DEFAULT NULL COMMENT '兴趣爱好2',
  156. hobby3 string DEFAULT NULL COMMENT '兴趣爱好3',
  157. pincome double DEFAULT NULL COMMENT '个人年收入',
  158. fincome double DEFAULT NULL COMMENT '家庭年收入',
  159. regtype string DEFAULT NULL COMMENT '户籍类型',
  160. incomesource string DEFAULT NULL COMMENT '收入来源',
  161. sistatus string DEFAULT NULL COMMENT '社保情况',
  162. novpolicy int DEFAULT NULL COMMENT '有效保单件数',
  163. noivpolicy int DEFAULT NULL COMMENT '失效保单件数',
  164. nostinsurance string DEFAULT NULL COMMENT '短意险保单持有情况 仅持有短意险保单,持有短意险保单,无短意险保单',
  165. nospinsurance string DEFAULT NULL COMMENT '趸交保单持有情况 仅持有趸交保单,持有趸交保单,无趸交保单',
  166. iself string DEFAULT NULL COMMENT '本人投保情况 仅本人投保,本人已投保,本人未投保',
  167. iparent string DEFAULT NULL COMMENT '父母投保情况 仅父母投保,父母已投保,父母未投保',
  168. ichildren string DEFAULT NULL COMMENT '子女投保情况 仅子女投保,子女已投保,子女未·投保',
  169. imate string DEFAULT NULL COMMENT '配偶投保情况 仅配偶投保,配偶已投保,配偶未投保',
  170. policybelong string DEFAULT NULL COMMENT '业绩归属',
  171. zipcode string DEFAULT NULL COMMENT '邮政编码',
  172. created_by string DEFAULT NULL COMMENT '创建人',
  173. created_time date DEFAULT NULL COMMENT '创建时间',
  174. updated_by string DEFAULT NULL COMMENT '更新人',
  175. updated_time date DEFAULT NULL COMMENT '更新时间',
  176. label1 string DEFAULT NULL COMMENT 'Label1',
  177. label2 string DEFAULT NULL COMMENT 'Label2',
  178. label3 string DEFAULT NULL COMMENT 'Label3',
  179. label4 string DEFAULT NULL COMMENT 'Label4',
  180. label5 string DEFAULT NULL COMMENT 'Label5',
  181. label6 string DEFAULT NULL COMMENT 'Label6',
  182. label7 string DEFAULT NULL COMMENT 'Label7',
  183. label8 string DEFAULT NULL COMMENT 'Label8',
  184. label9 string DEFAULT NULL COMMENT 'Label9',
  185. label10 string DEFAULT NULL COMMENT 'Label10',
  186. label11 string DEFAULT NULL COMMENT 'Label11',
  187. label12 string DEFAULT NULL COMMENT 'Label12',
  188. label13 string DEFAULT NULL COMMENT 'Label13',
  189. label14 string DEFAULT NULL COMMENT 'Label14',
  190. label15 string DEFAULT NULL COMMENT 'Label15',
  191. label16 string DEFAULT NULL COMMENT 'Label16',
  192. label17 string DEFAULT NULL COMMENT 'Label17',
  193. label18 string DEFAULT NULL COMMENT 'Label18',
  194. label19 string DEFAULT NULL COMMENT 'Label19',
  195. label20 string DEFAULT NULL COMMENT 'Label20',
  196. label21 string DEFAULT NULL COMMENT 'Label21',
  197. label22 string DEFAULT NULL COMMENT 'Label22',
  198. label23 string DEFAULT NULL COMMENT 'Label23',
  199. label24 string DEFAULT NULL COMMENT 'Label24',
  200. label25 string DEFAULT NULL COMMENT 'Label25',
  201. label26 string DEFAULT NULL COMMENT 'Label26',
  202. label27 string DEFAULT NULL COMMENT 'Label27',
  203. label28 string DEFAULT NULL COMMENT 'Label28',
  204. label29 string DEFAULT NULL COMMENT 'Label29',
  205. label30 string DEFAULT NULL COMMENT 'Label30',
  206. label31 string DEFAULT NULL COMMENT 'Label31',
  207. label32 string DEFAULT NULL COMMENT 'Label32',
  208. label33 string DEFAULT NULL COMMENT 'Label33',
  209. label34 string DEFAULT NULL COMMENT 'Label34',
  210. label35 string DEFAULT NULL COMMENT 'Label35',
  211. label36 string DEFAULT NULL COMMENT 'Label36',
  212. label37 string DEFAULT NULL COMMENT 'Label37',
  213. label38 string DEFAULT NULL COMMENT 'Label38',
  214. label39 string DEFAULT NULL COMMENT 'Label39',
  215. label40 string DEFAULT NULL COMMENT 'Label40',
  216. label41 string DEFAULT NULL COMMENT 'Label41',
  217. label42 string DEFAULT NULL COMMENT 'Label42',
  218. label43 string DEFAULT NULL COMMENT 'Label43',
  219. label44 string DEFAULT NULL COMMENT 'Label44',
  220. label45 string DEFAULT NULL COMMENT 'Label45',
  221. label46 string DEFAULT NULL COMMENT 'Label46',
  222. label47 string DEFAULT NULL COMMENT 'Label47',
  223. label48 string DEFAULT NULL COMMENT 'Label48',
  224. label49 string DEFAULT NULL COMMENT 'Label49',
  225. label50 string DEFAULT NULL COMMENT 'Label50',
  226. label51 string DEFAULT NULL COMMENT 'Label51',
  227. label52 string DEFAULT NULL COMMENT 'Label52',
  228. label53 string DEFAULT NULL COMMENT 'Label53',
  229. label54 string DEFAULT NULL COMMENT 'Label54',
  230. label55 string DEFAULT NULL COMMENT 'Label55',
  231. label56 string DEFAULT NULL COMMENT 'Label56',
  232. label57 string DEFAULT NULL COMMENT 'Label57',
  233. label58 string DEFAULT NULL COMMENT 'Label58',
  234. label59 string DEFAULT NULL COMMENT 'Label59',
  235. label60 string DEFAULT NULL COMMENT 'Label60',
  236. label61 string DEFAULT NULL COMMENT 'Label61',
  237. label62 string DEFAULT NULL COMMENT 'Label62',
  238. label63 string DEFAULT NULL COMMENT 'Label63',
  239. label64 string DEFAULT NULL COMMENT 'Label64',
  240. label65 string DEFAULT NULL COMMENT 'Label65',
  241. label66 string DEFAULT NULL COMMENT 'Label66',
  242. label67 string DEFAULT NULL COMMENT 'Label67',
  243. label68 string DEFAULT NULL COMMENT 'Label68',
  244. label69 string DEFAULT NULL COMMENT 'Label69',
  245. label70 string DEFAULT NULL COMMENT 'Label70',
  246. label71 string DEFAULT NULL COMMENT 'Label71',
  247. label72 string DEFAULT NULL COMMENT 'Label72',
  248. label73 string DEFAULT NULL COMMENT 'Label73',
  249. label74 string DEFAULT NULL COMMENT 'Label74',
  250. label75 string DEFAULT NULL COMMENT 'Label75',
  251. label76 string DEFAULT NULL COMMENT 'Label76',
  252. label77 string DEFAULT NULL COMMENT 'Label77',
  253. label78 string DEFAULT NULL COMMENT 'Label78',
  254. label79 string DEFAULT NULL COMMENT 'Label79',
  255. label80 string DEFAULT NULL COMMENT 'Label80',
  256. label81 string DEFAULT NULL COMMENT 'Label81',
  257. label82 string DEFAULT NULL COMMENT 'Label82',
  258. label83 string DEFAULT NULL COMMENT 'Label83',
  259. label84 string DEFAULT NULL COMMENT 'Label84',
  260. label85 string DEFAULT NULL COMMENT 'Label85',
  261. label86 string DEFAULT NULL COMMENT 'Label86',
  262. label87 string DEFAULT NULL COMMENT 'Label87',
  263. label88 string DEFAULT NULL COMMENT 'Label88',
  264. label89 string DEFAULT NULL COMMENT 'Label89',
  265. label90 string DEFAULT NULL COMMENT 'Label90',
  266. label91 string DEFAULT NULL COMMENT 'Label91',
  267. label92 string DEFAULT NULL COMMENT 'Label92',
  268. label93 string DEFAULT NULL COMMENT 'Label93',
  269. label94 string DEFAULT NULL COMMENT 'Label94',
  270. label95 string DEFAULT NULL COMMENT 'Label95',
  271. label96 string DEFAULT NULL COMMENT 'Label96',
  272. label97 string DEFAULT NULL COMMENT 'Label97',
  273. label98 string DEFAULT NULL COMMENT 'Label98',
  274. label99 string DEFAULT NULL COMMENT 'Label99',
  275. label100 string DEFAULT NULL COMMENT 'Label100',
  276. label101 string DEFAULT NULL COMMENT 'Label101',
  277. label102 string DEFAULT NULL COMMENT 'Label102',
  278. label103 string DEFAULT NULL COMMENT 'Label103',
  279. label104 string DEFAULT NULL COMMENT 'Label104',
  280. label105 string DEFAULT NULL COMMENT 'Label105',
  281. label106 string DEFAULT NULL COMMENT 'Label106',
  282. label107 string DEFAULT NULL COMMENT 'Label107',
  283. label108 string DEFAULT NULL COMMENT 'Label108',
  284. label109 string DEFAULT NULL COMMENT 'Label109',
  285. label110 string DEFAULT NULL COMMENT 'Label110',
  286. label111 string DEFAULT NULL COMMENT 'Label111',
  287. label112 string DEFAULT NULL COMMENT 'Label112',
  288. label113 string DEFAULT NULL COMMENT 'Label113',
  289. label114 string DEFAULT NULL COMMENT 'Label114',
  290. label115 string DEFAULT NULL COMMENT 'Label115',
  291. label116 string DEFAULT NULL COMMENT 'Label116',
  292. label117 string DEFAULT NULL COMMENT 'Label117',
  293. label118 string DEFAULT NULL COMMENT 'Label118',
  294. label119 string DEFAULT NULL COMMENT 'Label119',
  295. label120 string DEFAULT NULL COMMENT 'Label120'
  296. )
  297. COMMENT '客户信息 '
  298. stored as ES
  299. with shard number 10
  300. replication 1;
  301. DROP TABLE IF EXISTS shanglifeecif.Adress;
  302. CREATE TABLE shanglifeecif.Adress(
  303. AID string DEFAULT NULL COMMENT ' 地址ID ',
  304. PartyID string DEFAULT NULL COMMENT ' 参与方ID ',
  305. PartyName string DEFAULT NULL COMMENT ' 参与方名称 ',
  306. PartyPhone string DEFAULT NULL COMMENT ' 参与方手机号',
  307. PartyIDCard string DEFAULT NULL COMMENT ' 参与方证件号码',
  308. ACountry string DEFAULT NULL COMMENT ' 地址_国家 ',
  309. AState string DEFAULT NULL COMMENT ' 地址_省 ',
  310. ACity string DEFAULT NULL COMMENT ' 地址_市县 ',
  311. ATown string DEFAULT NULL COMMENT ' 地址_区镇 ',
  312. AStreet string DEFAULT NULL COMMENT ' 地址_街道 ',
  313. AStreetNo string DEFAULT NULL COMMENT ' 地址_门牌号 ',
  314. APostCode string DEFAULT NULL COMMENT ' 地址_邮政编码 ',
  315. APhone string DEFAULT NULL COMMENT ' 地址_电话 ',
  316. ADescribe string DEFAULT NULL COMMENT ' 地址描述 ',
  317. ADate DATE DEFAULT NULL COMMENT ' 地址时间 ',
  318. Longitude string DEFAULT NULL COMMENT ' 经度 ',
  319. Latitude string DEFAULT NULL COMMENT ' 纬度 ',
  320. AType string DEFAULT NULL COMMENT ' 地址类型 ',
  321. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  322. CREATED_TIME DATE DEFAULT NULL COMMENT ' 创建时间 ',
  323. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  324. UPDATED_TIME DATE DEFAULT NULL COMMENT ' 更新时间 '
  325. )
  326. COMMENT '地址信息'
  327. stored as ES
  328. with shard number 10
  329. replication 1;
  330. DROP TABLE IF EXISTS shanglifeecif.Organisation;
  331. CREATE TABLE shanglifeecif.Organisation(
  332. OID string DEFAULT NULL COMMENT ' 团体ID ',
  333. CustID string DEFAULT NULL COMMENT ' 客户ID ',
  334. SCustID string DEFAULT NULL COMMENT ' 上游客户ID ',
  335. Name string DEFAULT NULL COMMENT ' 名称 ',
  336. OCID string DEFAULT NULL COMMENT ' 联系人 ',
  337. OCName string DEFAULT NULL COMMENT ' 联系人姓名 ',
  338. OCPhone string DEFAULT NULL COMMENT ' 联系人电话 ',
  339. OFCID string DEFAULT NULL COMMENT ' 财务联系人 ',
  340. OFCName string DEFAULT NULL COMMENT ' 财务联系人姓名 ',
  341. OFCPhone string DEFAULT NULL COMMENT ' 财务联系人电话 ',
  342. OLevel string DEFAULT NULL COMMENT ' 组织层级 ',
  343. SCCode string DEFAULT NULL COMMENT ' 统一社会信用代码 ',
  344. OLPerson string DEFAULT NULL COMMENT ' 法人 ',
  345. BizType string DEFAULT NULL COMMENT ' 行业类型 ',
  346. RegDate DATE DEFAULT NULL COMMENT ' 注册日期 ',
  347. LegalStruct string DEFAULT NULL COMMENT ' 企业性质 ',
  348. RegAddress string DEFAULT NULL COMMENT ' 注册地址 ',
  349. RegFun double DEFAULT NULL COMMENT ' 注册资金 ',
  350. NuOfEmployees INT DEFAULT NULL COMMENT ' 员工人数 ',
  351. OState string DEFAULT NULL COMMENT ' 经营状况 ',
  352. OSDate DATE DEFAULT NULL COMMENT ' 经营状况日期 ',
  353. BranchCode string DEFAULT NULL COMMENT ' 机构代码 ',
  354. systemtag1 string DEFAULT NULL COMMENT '系统标签域1',
  355. systemtag2 string DEFAULT NULL COMMENT '系统标签域2',
  356. systemtag3 string DEFAULT NULL COMMENT '系统标签域3',
  357. Wechat1 string DEFAULT NULL COMMENT ' 微信公众号 ',
  358. Wechat2 string DEFAULT NULL COMMENT ' 微信服务号 ',
  359. weibo string DEFAULT NULL COMMENT '微博',
  360. email string DEFAULT NULL COMMENT '邮箱',
  361. qq string DEFAULT NULL COMMENT 'QQ',
  362. tiktok string DEFAULT NULL COMMENT '抖音',
  363. saccount1 string DEFAULT NULL COMMENT '社交账号1',
  364. sa1cat string DEFAULT NULL COMMENT '社交账号1类别', -- dialect: ORACLE
  365. saccount2 string DEFAULT NULL COMMENT '社交账号2',
  366. sa2cat string DEFAULT NULL COMMENT '社交账号2类别', -- dialect: ORACLE
  367. ctype string DEFAULT NULL COMMENT '客户类型', -- dialect: ORACLE
  368. bankname string DEFAULT NULL COMMENT '开户银行', -- dialect: ORACLE
  369. tobankcard string DEFAULT NULL COMMENT '银行卡类型', -- dialect: ORACLE
  370. accname string DEFAULT NULL COMMENT '账户名',
  371. bankaccno string DEFAULT NULL COMMENT '银行帐号',
  372. cobaccount INT DEFAULT NULL COMMENT '账户登录数量',
  373. sotlirisk double DEFAULT NULL COMMENT '传统寿险种保额合计',
  374. soairisk double DEFAULT NULL COMMENT '意外类险种保额合计',
  375. sosiirisk double DEFAULT NULL COMMENT '重疾类险种保额合计',
  376. somcirisk double DEFAULT NULL COMMENT '医疗费用类险种保额合计',
  377. someirisk double DEFAULT NULL COMMENT '医疗补贴类险种保额合计',
  378. soefirisk double DEFAULT NULL COMMENT '教育金类险种保额合计',
  379. sopirisk double DEFAULT NULL COMMENT '养老金类险种保额合计',
  380. sowmirisk double DEFAULT NULL COMMENT '财富管理险种保额合计',
  381. custclass INT DEFAULT NULL COMMENT '客户等级',
  382. convalue INT DEFAULT NULL COMMENT '贡献度分',
  383. awarded3 INT DEFAULT NULL COMMENT '家庭加分',
  384. awarded2 INT DEFAULT NULL COMMENT '续期加分',
  385. awarded1 INT DEFAULT NULL COMMENT '保单加分',
  386. sovalue INT DEFAULT NULL COMMENT '总分值',
  387. enddate DATE DEFAULT NULL COMMENT '客户等级失效日期',
  388. cocommunication INT DEFAULT NULL COMMENT '接触次数',
  389. lcdate DATE DEFAULT NULL COMMENT '最近接触时间',
  390. lctype string DEFAULT NULL COMMENT '最近接触类型', -- dialect: ORACLE
  391. cocomplaint INT DEFAULT NULL COMMENT '投诉次数',
  392. lcptdate DATE DEFAULT NULL COMMENT '最近投诉时间',
  393. lcptreason string DEFAULT NULL COMMENT '最近投诉原因', -- dialect: ORACLE
  394. lcptlink string DEFAULT NULL COMMENT '最近投诉环节', -- dialect: ORACLE
  395. lcptresult string DEFAULT NULL COMMENT '最近投诉处理结果', -- dialect: ORACLE
  396. lcptduration double DEFAULT NULL COMMENT '最近投诉处理时长',
  397. lcptperson string DEFAULT NULL COMMENT '最近投诉人', -- dialect: ORACLE
  398. soppremium double DEFAULT NULL COMMENT '累计已缴保费',
  399. lappdate DATE DEFAULT NULL COMMENT '最近投保日期',
  400. cndate DATE DEFAULT NULL COMMENT '最近报案日期',
  401. cnstatus string DEFAULT NULL COMMENT '最近报案状态', -- dialect: ORACLE
  402. cocnotification INT DEFAULT NULL COMMENT '报案登录数量',
  403. fadate DATE DEFAULT NULL COMMENT '首次投保日期',
  404. ladate DATE DEFAULT NULL COMMENT '最近投保日期',
  405. lpno string DEFAULT NULL COMMENT '最近保险单号',
  406. lpstate string DEFAULT NULL COMMENT '最近保单状态', -- dialect: ORACLE
  407. lpname string DEFAULT NULL COMMENT '最近投保险种名称',
  408. copolicy INT DEFAULT NULL COMMENT '保单登录数量',
  409. iaccno1 string DEFAULT NULL COMMENT '保险账户1',
  410. IAccName1 string DEFAULT NULL COMMENT '保险账户名称1',
  411. iaccno2 string DEFAULT NULL COMMENT '保险账户2',
  412. IAccName2 string DEFAULT NULL COMMENT '保险账户名称2',
  413. iaccno3 string DEFAULT NULL COMMENT '保险账户3',
  414. IAccName3 string DEFAULT NULL COMMENT '保险账户名称3',
  415. soiaccount1 double DEFAULT NULL COMMENT '保险账户1余额',
  416. soiaccount2 double DEFAULT NULL COMMENT '保险账户2余额',
  417. soiaccount3 double DEFAULT NULL COMMENT '保险账户3余额',
  418. coiaccount INT DEFAULT NULL COMMENT '保险账户登录数量',
  419. CustState string DEFAULT NULL COMMENT '客户状态',
  420. DataSource string DEFAULT NULL COMMENT '数据来源',
  421. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  422. CREATED_TIME TIMESTAMP DEFAULT NULL COMMENT ' 创建时间 ',
  423. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  424. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 '
  425. )
  426. COMMENT '团体'
  427. stored as ES
  428. with shard number 10
  429. replication 1;
  430. DROP TABLE IF EXISTS shanglifeecif.PrivacyPreferenceInstructions;
  431. CREATE TABLE shanglifeecif.PrivacyPreferenceInstructions(
  432. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  433. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  434. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  435. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  436. PPIID string DEFAULT NULL COMMENT ' 偏好ID ',
  437. IndID string DEFAULT NULL COMMENT ' 个体ID ',
  438. IndPhone string DEFAULT NULL COMMENT ' 个人手机号 ',
  439. IndIDCard string DEFAULT NULL COMMENT ' 个人证件 ',
  440. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  441. Type string DEFAULT NULL COMMENT ' 类别 ',
  442. W1Stime string DEFAULT NULL COMMENT ' 周一起始时间 ',
  443. W1Etime string DEFAULT NULL COMMENT ' 周一结束时间 ',
  444. W2Stime string DEFAULT NULL COMMENT ' 周二起始时间 ',
  445. W2Etime string DEFAULT NULL COMMENT ' 周二结束时间 ',
  446. W3Stime string DEFAULT NULL COMMENT ' 周三起始时间 ',
  447. W3Etime string DEFAULT NULL COMMENT ' 周三结束时间 ',
  448. W4Stime string DEFAULT NULL COMMENT ' 周四起始时间 ',
  449. W4Etime string DEFAULT NULL COMMENT ' 周四结束时间 ',
  450. W5Stime string DEFAULT NULL COMMENT ' 周五起始时间 ',
  451. W5Etime string DEFAULT NULL COMMENT ' 周五结束时间 ',
  452. W6Stime string DEFAULT NULL COMMENT ' 周六起始时间 ',
  453. W6Etime string DEFAULT NULL COMMENT ' 周六结束时间 ',
  454. W7Stime string DEFAULT NULL COMMENT ' 周日起始时间 ',
  455. W7Etime string DEFAULT NULL COMMENT ' 周日结束时间 '
  456. )
  457. COMMENT '隐私偏好设定'
  458. stored as ES
  459. with shard number 10
  460. replication 1;
  461. DROP TABLE IF EXISTS shanglifeecif.HealthStatus;
  462. CREATE TABLE shanglifeecif.HealthStatus(
  463. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  464. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  465. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  466. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  467. HSID string DEFAULT NULL COMMENT ' 健康状况ID ',
  468. IndID string DEFAULT NULL COMMENT ' 个体ID ',
  469. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  470. IndPhone string DEFAULT NULL COMMENT ' 个人手机 ',
  471. IndIDCard string DEFAULT NULL COMMENT ' 个人证件号码 ',
  472. EvaDate DATE DEFAULT NULL COMMENT ' 评估日期 ',
  473. Height double DEFAULT NULL COMMENT ' 身高 ',
  474. Weight double DEFAULT NULL COMMENT ' 体重 ',
  475. CIllness string DEFAULT NULL COMMENT ' 当前疾病 ',
  476. PIllness string DEFAULT NULL COMMENT ' 曾患疾病 ',
  477. BMI double DEFAULT NULL COMMENT ' BMI体制指数 '
  478. )
  479. COMMENT '健康状况'
  480. stored as ES
  481. with shard number 10
  482. replication 1;
  483. DROP TABLE IF EXISTS shanglifeecif.RealProperty;
  484. CREATE TABLE shanglifeecif.RealProperty(
  485. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  486. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  487. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  488. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  489. RPID string DEFAULT NULL COMMENT ' 房产ID ',
  490. IndID string DEFAULT NULL COMMENT ' IndID ',
  491. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  492. IndPhone string DEFAULT NULL COMMENT ' 个人手机 ',
  493. IndIDCard string DEFAULT NULL COMMENT ' 个人证件号码 ',
  494. RPAID string DEFAULT NULL COMMENT ' 房产地址 ',
  495. RPAL string DEFAULT NULL COMMENT ' 房产地址不分段 ',
  496. RPRegNo string DEFAULT NULL COMMENT ' 产权证号码 ',
  497. BLDGType string DEFAULT NULL COMMENT ' 房产结构 ',
  498. BLDGStyle string DEFAULT NULL COMMENT ' 房型 ',
  499. RPType string DEFAULT NULL COMMENT ' 房产类型 ',
  500. RPOSize double DEFAULT NULL COMMENT ' 建筑面积 ',
  501. RPTSize double DEFAULT NULL COMMENT ' 实得面积 ',
  502. RPSTime DATE DEFAULT NULL COMMENT ' 开始时间 ',
  503. RPETime DATE DEFAULT NULL COMMENT ' 结束时间 '
  504. )
  505. COMMENT '房产'
  506. stored as ES
  507. with shard number 10
  508. replication 1;
  509. DROP TABLE IF EXISTS shanglifeecif.Vehicle;
  510. CREATE TABLE shanglifeecif.Vehicle(
  511. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  512. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  513. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  514. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  515. VID string DEFAULT NULL COMMENT ' 车辆ID ',
  516. IndID string DEFAULT NULL COMMENT ' 个人ID ',
  517. VMake string DEFAULT NULL COMMENT ' 车型 ',
  518. VModel string DEFAULT NULL COMMENT ' 型号 ',
  519. VINNumber string DEFAULT NULL COMMENT ' VIN码 ',
  520. VCNumber string DEFAULT NULL COMMENT ' 车架号 ',
  521. VRNumber string DEFAULT NULL COMMENT ' 牌照号码 ',
  522. VSTime DATE DEFAULT NULL COMMENT ' 开始时间 ',
  523. VETime DATE DEFAULT NULL COMMENT ' 结束时间 '
  524. )
  525. COMMENT '车辆'
  526. stored as ES
  527. with shard number 10
  528. replication 1;
  529. DROP TABLE IF EXISTS shanglifeecif.IndRelationShip;
  530. CREATE TABLE shanglifeecif.IndRelationShip(
  531. IRSID string DEFAULT NULL COMMENT ' 个体关系ID ',
  532. RSType string DEFAULT NULL COMMENT ' 关系类型 ',
  533. IndID1 string DEFAULT NULL COMMENT ' 个体1 ',
  534. Name1 string DEFAULT NULL COMMENT ' 个体1名称 ',
  535. Mphone1 string DEFAULT NULL COMMENT ' 个体1手机 ',
  536. IDCard1 string DEFAULT NULL COMMENT ' 个体1证件号码 ',
  537. Role1 string DEFAULT NULL COMMENT ' 个体1角色 ',
  538. IndID2 string DEFAULT NULL COMMENT ' 个体2 ',
  539. Name2 string DEFAULT NULL COMMENT ' 个体2名称 ',
  540. Mphone2 string DEFAULT NULL COMMENT ' 个体2手机 ',
  541. IDCard2 string DEFAULT NULL COMMENT ' 个体2证件号码 ',
  542. Role2 string DEFAULT NULL COMMENT ' 个体2角色 ',
  543. RSSTime string DEFAULT NULL COMMENT ' 开始时间 ',
  544. RSETime string DEFAULT NULL COMMENT ' 结束时间 ',
  545. RSDescribe string DEFAULT NULL COMMENT ' 关系描述 ',
  546. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  547. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  548. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  549. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 '
  550. )
  551. COMMENT '个体关系'
  552. stored as ES
  553. with shard number 10
  554. replication 1;
  555. DROP TABLE IF EXISTS shanglifeecif.IndOrgRelationShip;
  556. CREATE TABLE shanglifeecif.IndOrgRelationShip(
  557. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  558. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  559. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  560. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  561. IORSID string DEFAULT NULL COMMENT ' 关系ID ',
  562. RSType string DEFAULT NULL COMMENT ' 关系类型 ',
  563. IndID string DEFAULT NULL COMMENT ' 个体 ',
  564. IndName string DEFAULT NULL COMMENT ' 个体名称 ',
  565. Mphone string DEFAULT NULL COMMENT ' 个体手机 ',
  566. IDCard string DEFAULT NULL COMMENT ' 个体证件号码 ',
  567. IRole string DEFAULT NULL COMMENT ' 个体角色 ',
  568. OID string DEFAULT NULL COMMENT ' 团体 ',
  569. SCCode string DEFAULT NULL COMMENT ' 统一社会信用代码 ',
  570. OrgName string DEFAULT NULL COMMENT ' 团体名称 ',
  571. OCID string DEFAULT NULL COMMENT ' 联系人 ',
  572. OCName string DEFAULT NULL COMMENT ' 联系人姓名 ',
  573. OCPhone string DEFAULT NULL COMMENT ' 联系人电话 ',
  574. ORole string DEFAULT NULL COMMENT ' 团体角色 ',
  575. RSSTime DATE DEFAULT NULL COMMENT ' 开始时间 ',
  576. RSETime DATE DEFAULT NULL COMMENT ' 结束时间 ',
  577. RSDescribe string DEFAULT NULL COMMENT ' 关系描述 '
  578. )
  579. COMMENT '个人团体关系'
  580. stored as ES
  581. with shard number 10
  582. replication 1;
  583. --创建保单表insurancearrangement
  584. DROP TABLE IF EXISTS shanglifeecif.InsuranceArrangement;
  585. CREATE TABLE shanglifeecif.insurancearrangement(
  586. iaid string NOT NULL COMMENT '保单ID',
  587. policyno string DEFAULT NULL COMMENT '保险单号 INSURANCEINFO.CONTNO',
  588. pano string DEFAULT NULL COMMENT '投保单号 INSURANCEINFO.PRTNO',
  589. agrmntage string DEFAULT NULL COMMENT '保险期限',
  590. pbinst string DEFAULT NULL COMMENT '受益分配方式',
  591. pwcomp string DEFAULT NULL COMMENT '承保分公司 HEALTH_INSURANCE_LISTING.AGENTGROUPAREA 营业区HEALTH_INSURANCE_LISTING.AGENTGROUP 营业部',
  592. pindate string DEFAULT NULL COMMENT '起保日期 POLICY_INFORMATION.CVALIDATE',
  593. pmdate string DEFAULT NULL COMMENT '终保日期 POLICY_INFORMATION.ENDDATE',
  594. pisdate string DEFAULT NULL COMMENT '签单日期 INSURANCEINFO.SIGNDATE',
  595. padate string DEFAULT NULL COMMENT '投保日期 INSURANCEINFO.POLAPPLYDATE',
  596. renewaldate string DEFAULT NULL COMMENT '续保日期',
  597. norenewal int DEFAULT NULL COMMENT '续保次数 POLICY_INFORMATION.PAYCOUNT',
  598. policytype string DEFAULT NULL COMMENT '保单类型 PERSONAL_INSURANCE.CONTTYPE,需上游给出类型枚举值',
  599. schannel string DEFAULT NULL COMMENT '销售渠道 HEALTH_INSURANCE_LISTING.SALECHANNELS 1 2 3 4 5',
  600. bsource string DEFAULT NULL COMMENT '业务来源',
  601. policystate string DEFAULT NULL COMMENT '保单状态 保单包括投保单的所处的状态,例如:录入、生效、批单等 INSURANCEINFO.APPFLAG code 0 1 2 4 9 B F',
  602. topay string DEFAULT NULL COMMENT '缴费类型',
  603. payment string DEFAULT NULL COMMENT '缴费方式 POLICY_INFORMATION.PAYINTV',
  604. risk double DEFAULT NULL COMMENT '总保额 HEALTH_INSURANCE_LISTING.AMNT(测试环境中,此表保单数据量较其他表如:POLICY_INFORMATION,INSURANCEINFO 缺少至少一个数据量级)',
  605. prem double DEFAULT NULL COMMENT '总保费 INSURANCEINFO.PREM',
  606. currency string DEFAULT NULL COMMENT '币种',
  607. npdate string DEFAULT NULL COMMENT '下次缴费日期',
  608. soinsured int DEFAULT NULL COMMENT '被保人数 HEALTH_GROUP_LISTING.PEOPLES3,团单',
  609. bsinsured double DEFAULT NULL COMMENT '基本保额 ',
  610. insurvalue double DEFAULT NULL COMMENT '保单价值 ',
  611. applicantscustid string DEFAULT NULL COMMENT '投保人上游客户号',
  612. appname string DEFAULT NULL COMMENT '投保人名称 POLICY_INFORMATION.NAME',
  613. appphone string DEFAULT NULL COMMENT '投保人手机',
  614. appcertid string DEFAULT NULL COMMENT '投保人证件号码 POLICY_INFORMATION.IDNO',
  615. insuredid string DEFAULT NULL COMMENT '主被保险人 客户号',
  616. insuredscustid string DEFAULT NULL COMMENT '主被保险人 上游客户号POLICY_INFORMATION.insuredno',
  617. insname string DEFAULT NULL COMMENT '主被保险人名称 POLICY_INFORMATION.INSUREDNAME',
  618. insphone string DEFAULT NULL COMMENT '主被保险人手机',
  619. inscertid string DEFAULT NULL COMMENT '主被保险人证件号码 POLICY_INFORMATION.INSUREDIDNO',
  620. productid string DEFAULT NULL COMMENT '险种代码 POLICY_INFORMATION.RISKCODE',
  621. productname string DEFAULT NULL COMMENT '险种名称 INSURANCEINFO.RISKNAME',
  622. salesperson string DEFAULT NULL COMMENT '业务员',
  623. spname string DEFAULT NULL COMMENT '业务员名称 HEALTH_INSURANCE_LISTING.AGENTCODE',
  624. iaccount string DEFAULT NULL COMMENT '所属保险账户',
  625. branchcode string DEFAULT NULL COMMENT '机构代码',
  626. policybelong string DEFAULT NULL COMMENT '业绩归属 POLICY_INFORMATION.SALECOM',
  627. agentchannel string DEFAULT NULL COMMENT '代理渠道 INSURANCEINFO.SELLTYPE',
  628. agentorg string DEFAULT NULL COMMENT '代理机构',
  629. regtype string DEFAULT NULL COMMENT '户籍类型',
  630. pincome string DEFAULT NULL COMMENT '个人年收入',
  631. fincome double DEFAULT NULL COMMENT '家庭年收入',
  632. incomesource string DEFAULT NULL COMMENT '收入来源',
  633. socialinsurance string DEFAULT NULL COMMENT '是否有社保',
  634. oipolicy string DEFAULT NULL COMMENT '是否投保其他保险公司',
  635. oicompany string DEFAULT NULL COMMENT '其他保险公司',
  636. oicproduct string DEFAULT NULL COMMENT '其他保险公司险种',
  637. oiamount double DEFAULT NULL COMMENT '其他保险公司保额',
  638. drinking string DEFAULT NULL COMMENT '是否饮酒',
  639. dfavor string DEFAULT NULL COMMENT '饮酒喜好',
  640. poservice string DEFAULT NULL COMMENT '是否保全 投保人持有保单是否在AUDIT_EDORLIST.CONTNO存在',
  641. payendyear int DEFAULT NULL COMMENT '缴费年期 POLICY_INFORMATION.PAYENDYEAR',
  642. loanmoney double DEFAULT NULL COMMENT '保单质押贷款金额 AUDIT_LN_LIST.LNMONEY ',
  643. paydate string DEFAULT NULL COMMENT '缴至日期',
  644. risk_categories string DEFAULT NULL COMMENT '险种大类代码',
  645. risk_categories_name string DEFAULT NULL COMMENT '险种大类名称',
  646. created_by string DEFAULT NULL COMMENT '创建人',
  647. created_time date DEFAULT NULL COMMENT '创建时间',
  648. updated_by string DEFAULT NULL COMMENT '更新人',
  649. updated_time date DEFAULT NULL COMMENT '更新时间'
  650. )
  651. COMMENT '保单 确定参与方之间,参与方和保险公司之间的协议,使相关各方能在遵守一定的规则并履行相关义务的前提下进行产品或资源或服务的供给'
  652. stored as ES
  653. with shard number 10
  654. replication 1;
  655. DROP TABLE IF EXISTS shanglifeecif.IndIARelationShip;
  656. CREATE TABLE shanglifeecif.IndIARelationShip(
  657. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  658. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  659. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  660. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  661. IIARSID string DEFAULT NULL COMMENT ' 关系ID ',
  662. IndID string DEFAULT NULL COMMENT ' 个人ID ',
  663. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  664. IndPhone string DEFAULT NULL COMMENT ' 个人手机 ',
  665. IndIDCard string DEFAULT NULL COMMENT ' 个人证件号码 ',
  666. RolePlayer string DEFAULT NULL COMMENT ' 角色 ',
  667. ROBeneficiary double DEFAULT NULL COMMENT ' 受益比例 ',
  668. IAID string DEFAULT NULL COMMENT ' 保单号 ',
  669. PolicyNo string DEFAULT NULL COMMENT ' 保险单号 ',
  670. PANo string DEFAULT NULL COMMENT ' 投保单号 ',
  671. PolicyState string DEFAULT NULL COMMENT ' 保单状态 ',
  672. RSSTime DATE DEFAULT NULL COMMENT ' 开始时间 ',
  673. RSEtime DATE DEFAULT NULL COMMENT ' 结束时间 '
  674. )
  675. COMMENT '个人保单关系'
  676. stored as ES
  677. with shard number 10
  678. replication 1;
  679. DROP TABLE IF EXISTS shanglifeecif.Communication;
  680. CREATE TABLE shanglifeecif.Communication(
  681. CommID string DEFAULT NULL COMMENT ' 接触ID ',
  682. IndID string DEFAULT NULL COMMENT ' 接触人ID ',
  683. CPName string DEFAULT NULL COMMENT ' 接触人名称 ',
  684. CPPhone string DEFAULT NULL COMMENT ' 接触人手机 ',
  685. CPCertID string DEFAULT NULL COMMENT ' 接触人证件号码 ',
  686. RSOApplicant string DEFAULT NULL COMMENT ' 与保单投保人关系 ',
  687. PolicyNo string DEFAULT NULL COMMENT ' 保险单号 ',
  688. CommType string DEFAULT NULL COMMENT ' 接触类型 ',
  689. CommChannel string DEFAULT NULL COMMENT ' 接触渠道 ',
  690. Reason string DEFAULT NULL COMMENT ' 接触原因 ',
  691. CommTime string DEFAULT NULL COMMENT ' 接触时间 ',
  692. CommDescribe string DEFAULT NULL COMMENT ' 接触描述 ',
  693. CompLink string DEFAULT NULL COMMENT ' 投诉环节 ',
  694. CompReason string DEFAULT NULL COMMENT ' 投诉原因 ',
  695. ProcedureResult string DEFAULT NULL COMMENT ' 处理结果 ',
  696. CommLevel string DEFAULT NULL COMMENT ' 接触等级 ',
  697. RVType string DEFAULT NULL COMMENT ' 回访类型 ',
  698. RVDate string DEFAULT NULL COMMENT ' 回访时间 ',
  699. RVDuration double DEFAULT NULL COMMENT ' 回访时长 ',
  700. CPTDuration double DEFAULT NULL COMMENT ' 投诉处理时长 ',
  701. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  702. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  703. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  704. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 '
  705. )
  706. COMMENT '接触'
  707. stored as ES
  708. with shard number 10
  709. replication 1;
  710. DROP TABLE IF EXISTS shanglifeecif.InsuranceClaimThread;
  711. CREATE TABLE shanglifeecif.insuranceclaimthread(
  712. icthreadid string NOT NULL COMMENT '保险理赔Id',
  713. crno string DEFAULT NULL COMMENT '立案号',
  714. companyno string DEFAULT NULL COMMENT '公司代码',
  715. policyno string NOT NULL COMMENT '保险单号 INSURANCE_CLAIM.CONTNO',
  716. applicantid string DEFAULT NULL COMMENT '投保人ID',
  717. appname string DEFAULT NULL COMMENT '投保人名称',
  718. appphone string DEFAULT NULL COMMENT '投保人手机',
  719. appcertid string DEFAULT NULL COMMENT '投保人证件号码 INSURANCE_CLAIM.RISKDATE',
  720. cnno string DEFAULT NULL COMMENT '报案号',
  721. losstime string DEFAULT NULL COMMENT '损失发生时间',
  722. rpid string DEFAULT NULL COMMENT '报案人',
  723. rpname string DEFAULT NULL COMMENT '报案人名称',
  724. rpphone string DEFAULT NULL COMMENT '报案人电话',
  725. lpid string DEFAULT NULL COMMENT '出险人',
  726. lpscutid string DEFAULT NULL COMMENT '出险人上游客户号',
  727. lpname string DEFAULT NULL COMMENT '出险人名称',
  728. cndate string DEFAULT NULL COMMENT '报案日期 INSURANCE_CLAIM.RPTDATE',
  729. lossdescribe string DEFAULT NULL COMMENT '损失原因 案件发生的原因:INSURANCE_CLAIM.LLOCCURREASON',
  730. crdate string DEFAULT NULL COMMENT '立案日期 INSURANCE_CLAIM.RGTDATE',
  731. cndescribe string DEFAULT NULL COMMENT '报案描述 INSURANCE_CLAIM.ACCIDENTDETAIL',
  732. claimstatus string DEFAULT NULL COMMENT '理赔状态 案件的状态,例如:录入、已立案等',
  733. csdate string DEFAULT NULL COMMENT '理赔状态日期',
  734. relationship string DEFAULT NULL COMMENT '报案人与出险人关系',
  735. ccno string DEFAULT NULL COMMENT '赔案号 AUDIT_CLAIM_INSURANCE.CLMNO',
  736. ccstatus string DEFAULT NULL COMMENT '赔案状态',
  737. ccsdate string DEFAULT NULL COMMENT '赔案状态日期',
  738. productid string DEFAULT NULL COMMENT '险种代码',
  739. productname string DEFAULT NULL COMMENT '险种代码名称',
  740. ccamt double DEFAULT NULL COMMENT '赔付金额',
  741. branchcode string DEFAULT NULL COMMENT '机构代码',
  742. claimcasestatus string DEFAULT NULL COMMENT '案件状态INSURANCE_CLAIM_HEALTH.LLCLAIMSTATE',
  743. accidenttype string DEFAULT NULL COMMENT '理赔类型',
  744. created_by string DEFAULT NULL COMMENT '',
  745. created_time date DEFAULT NULL COMMENT '',
  746. updated_by string DEFAULT NULL COMMENT '',
  747. updated_time date DEFAULT NULL COMMENT ''
  748. )
  749. COMMENT '保险理赔'
  750. stored as ES
  751. with shard number 10
  752. replication 1;
  753. DROP TABLE IF EXISTS shanglifeecif.Payment;
  754. CREATE TABLE shanglifeecif.Payment(
  755. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  756. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  757. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  758. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  759. PaymentID string DEFAULT NULL COMMENT ' 收付交易 ID ',
  760. IndID string DEFAULT NULL COMMENT ' 个人ID ',
  761. PlolicyNo string DEFAULT NULL COMMENT ' 保险单号 ',
  762. PaymentReason string DEFAULT NULL COMMENT ' 收付原因 ',
  763. PaymentItem string DEFAULT NULL COMMENT ' 收付项目 ',
  764. PaymentChannel string DEFAULT NULL COMMENT ' 收付方式 ',
  765. BankAccNo string DEFAULT NULL COMMENT ' 银行账号 ',
  766. Currency string DEFAULT NULL COMMENT ' 币种 ',
  767. SOPayment double DEFAULT NULL COMMENT ' 收付金额 ',
  768. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  769. IndPhone string DEFAULT NULL COMMENT ' 个人手机 ',
  770. IndIDCard string DEFAULT NULL COMMENT ' 个人证件号码 ',
  771. DOPPayment DATE DEFAULT NULL COMMENT ' 计划收付日期 ',
  772. DOAPayment DATE DEFAULT NULL COMMENT ' 实付日期 '
  773. )
  774. COMMENT '收付交易'
  775. stored as ES
  776. with shard number 10
  777. replication 1;
  778. DROP TABLE IF EXISTS shanglifeecif.InsuranceAccount;
  779. CREATE TABLE shanglifeecif.InsuranceAccount(
  780. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  781. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  782. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  783. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  784. IAccID string DEFAULT NULL COMMENT ' 保险账户ID ',
  785. IndID string DEFAULT NULL COMMENT ' 个人ID ',
  786. IndName string DEFAULT NULL COMMENT ' 个人名称 ',
  787. IndPhone string DEFAULT NULL COMMENT ' 个人手机 ',
  788. IndIDCard string DEFAULT NULL COMMENT ' 个人证件号码 ',
  789. RegDate DATE DEFAULT NULL COMMENT ' 开户日期 ',
  790. UnRegDate DATE DEFAULT NULL COMMENT ' 销户日期 ',
  791. IAccName string DEFAULT NULL COMMENT ' 保险账户名称 ',
  792. IAccType string DEFAULT NULL COMMENT ' 保险账户类型 ',
  793. IAccStatus string DEFAULT NULL COMMENT ' 保险账户状态 ',
  794. FixedRate double DEFAULT NULL COMMENT ' 固定利率 ',
  795. AccCDate DATE DEFAULT NULL COMMENT ' 账户变动日期 ',
  796. AccBalance double DEFAULT NULL COMMENT ' 账户余额 ',
  797. FrozenCapital double DEFAULT NULL COMMENT ' 冻结余额 ',
  798. OutstdInterest double DEFAULT NULL COMMENT ' 未结算利息 ',
  799. LBdate DATE DEFAULT NULL COMMENT ' 上次结算日期 ',
  800. LABalance double DEFAULT NULL COMMENT ' 上次结算余额 ',
  801. InterestType string DEFAULT NULL COMMENT ' 计息类型 ',
  802. SettlementCycle INT DEFAULT NULL COMMENT ' 结算周期 ',
  803. SettlementTime date DEFAULT NULL COMMENT ' 结算时点 ',
  804. SettlementType string DEFAULT NULL COMMENT ' 结算类型 '
  805. )
  806. COMMENT '保险账户'
  807. stored as ES
  808. with shard number 10
  809. replication 1;
  810. DROP TABLE IF EXISTS shanglifeecif.PartyLabel;
  811. CREATE TABLE shanglifeecif.PartyLabel(
  812. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  813. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  814. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  815. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  816. LabelID string DEFAULT NULL COMMENT ' 标签ID ',
  817. PartyID string DEFAULT NULL COMMENT ' 参与方ID ',
  818. LabelName string DEFAULT NULL COMMENT ' 标签名称 ',
  819. LabelDescribe string DEFAULT NULL COMMENT ' 标签描述 ',
  820. LabelType string DEFAULT NULL COMMENT ' 标签类别 ',
  821. LabelLevel INT DEFAULT NULL COMMENT ' 标签层级 ',
  822. LCDate date DEFAULT NULL COMMENT ' 标签创建BrancheCode日期 ',
  823. LabelStatus string DEFAULT NULL COMMENT ' 标签状态 ',
  824. AuthorID string DEFAULT NULL COMMENT ' 标签创建人 ',
  825. BrancheCode string DEFAULT NULL COMMENT ' 机构代码 ',
  826. PartyName string DEFAULT NULL COMMENT ' 参与方名称 ',
  827. PartyIDNumber string DEFAULT NULL COMMENT ' 参与方证件号码 ',
  828. PartyPhone string DEFAULT NULL COMMENT ' 参与方电话 ',
  829. LabelCode string DEFAULT NULL COMMENT ' 标签生成逻辑 '
  830. )
  831. COMMENT '参与方标签'
  832. stored as ES
  833. with shard number 10
  834. replication 1;
  835. DROP TABLE IF EXISTS shanglifeecif.MergeRelationship;
  836. CREATE TABLE shanglifeecif.MergeRelationship(
  837. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  838. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  839. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  840. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  841. MRSID string DEFAULT NULL COMMENT ' 合并关系ID ',
  842. Party1ID string DEFAULT NULL COMMENT ' 合并方 ',
  843. Party2ID string DEFAULT NULL COMMENT ' 被合并方 ',
  844. Party1Name string DEFAULT NULL COMMENT ' 合并方名称 ',
  845. Party1IDCard string DEFAULT NULL COMMENT ' 合并方证件号码 ',
  846. Party1Phone string DEFAULT NULL COMMENT ' 合并方电话 ',
  847. Party2Name string DEFAULT NULL COMMENT ' 被合并方名称 ',
  848. Party2IDCard string DEFAULT NULL COMMENT ' 被合并方证件号码 ',
  849. Party2Phone string DEFAULT NULL COMMENT ' 被合并方电话 ',
  850. MergeDate date DEFAULT NULL COMMENT ' 合并日期 ',
  851. MergeMethod string DEFAULT NULL COMMENT ' 合并方式 ',
  852. MergeAuditorID string DEFAULT NULL COMMENT ' 合并批准人 ',
  853. MergeAuditorName string DEFAULT NULL COMMENT ' 合并批准人名称 ',
  854. Party1Backup string DEFAULT NULL COMMENT ' 合并方备份 ',
  855. MRSStatus string DEFAULT NULL COMMENT ' 合并关系状态 '
  856. )
  857. COMMENT '参与方合并关系'
  858. stored as ES
  859. with shard number 10
  860. replication 1;
  861. DROP TABLE IF EXISTS shanglifeecif.PartyTimeLine;
  862. CREATE TABLE shanglifeecif.PartyTimeLine(
  863. CREATED_BY string DEFAULT NULL COMMENT ' 创建人 ',
  864. CREATED_TIME date DEFAULT NULL COMMENT ' 创建时间 ',
  865. UPDATED_BY string DEFAULT NULL COMMENT ' 更新人 ',
  866. UPDATED_TIME date DEFAULT NULL COMMENT ' 更新时间 ',
  867. TripID string DEFAULT NULL COMMENT ' 旅程ID ',
  868. PartyID string DEFAULT NULL COMMENT ' 参与方ID ',
  869. Name string DEFAULT NULL COMMENT ' 参与方名称 ',
  870. PCertID string DEFAULT NULL COMMENT ' 参与方证件号码 ',
  871. PPhone string DEFAULT NULL COMMENT ' 参与方手机 ',
  872. PRole string DEFAULT NULL COMMENT ' 参与方角色 ',
  873. Scenario string DEFAULT NULL COMMENT ' 场景 ',
  874. SDate date DEFAULT NULL COMMENT ' 发生日期 ',
  875. ThreadID string DEFAULT NULL COMMENT ' 关联ID ',
  876. ParentID string DEFAULT NULL COMMENT ' 父ID ',
  877. Describe string DEFAULT NULL COMMENT ' 描述 ',
  878. Channel string DEFAULT NULL COMMENT ' 来源 '
  879. )
  880. COMMENT '参与方事件'
  881. stored as ES
  882. with shard number 10
  883. replication 1;
  884. DROP TABLE IF EXISTS shanglifeecif.exception_log;
  885. CREATE TABLE shanglifeecif.exception_log(
  886. log_code STRING DEFAULT NULL COMMENT '错误代码', -- dialect: ORACLE
  887. log_msg string DEFAULT NULL COMMENT '错误信息',
  888. log_time timestamp NOT NULL COMMENT '操作时间'
  889. )
  890. COMMENT '错误日志'
  891. stored as ES
  892. with shard number 10
  893. replication 1;