一、三户模型
客户
lect from cust_551 where cust_id=682;
字段:
PARTY_ID:参与人ID;COMMON_REGION_ID:客户区域标识;CUST_TYPE:客户类型政企、家庭、个人;CUST_AREA_GRADE:客户级别集团客户、跨省客户、省内客户;
PARTY_ID:参与人ID的作用,是客户表与证件表等表的中间表
账户
lect from account_551 where cust_id=682;
字段:
CUST_ID:客户ID ;一个帐户对应一个客户
用户
lect from prod_inst_550 where product_id=1360;
字段:
USE_CUST_ID 、OWNER_CUST_ID 、PAY_CUST_ID三个字段区别分别是:客户分别是使用者、办理者和支付者;
PAYMENT_MODE_CD:预付费字段付费模式CD:2100=预付费;1200=后付费;
用户表状态status_cd可在map_code表中找到定义
走进玉米地lect from map_code where table_name='PROD_INST';
状态100000表示在用 120000表示停机 110000:拆机:110098:注销
用户表中可以用owner_cust_idUSE_CUST_ID 、PAY_CUST_ID与客户表的cust_id关联;用acct_id与账户表的accout_id关联;
客户表、账户表和用户表之间的关系
一个客户可以对应多个用户,一个客户可以对应多个帐户;
一个帐户对应一个客户,一个帐户可以对应多个用户;
一个用户对应一个帐户;
二、客户域
客户表
lect from cust_551 where cust_id=682;
字段:group_cust_q 集团客户标识
参与人表tb_pty_pty
lect from tb_pty_pty_550;
lect from女发型 tb_pty_pty_550 where pty_id=370;
字段
PARTY_ID:参与人标识;PARTY_TYPE:参与人类型个人、组织;STATUS_CD:参与人状态;
参与人角色tb_pty_pty_role
lect 儿童贺卡制作图片from tb_pty_pty_role_550;
lect from tb_pty_pty_role_550 where pty_id=多毛老妈370;
字段
PARTY_ROLE_ID:参与人角色标识;PARTY_ID:参与人标识外键;ROLE_TYPE:参与人角色类型客户、员工、合作伙伴、竞争对手、会员、俱乐部等;
参与人角色表在实际应用中没有被用到;
参与人证件表 party_centification
lect from party_centification;
lect from party_centification where party_id=370;
lect from tb_pty_pty_certif;
lect from tb_pty_pty_certif where pty_id=301;
字段
certi_type_id:证件类型身份证、军官证等;
参与人证件表与客户证件表tb_pty_pty_certif是一样的,表中信息同步进行更新,使用情况:客户证件表
客户密码认证表cust_certification
电信用于确认客户接入电信系统的身份和权限信息
lect from cust_551 where cust_id=264;
lect from cust_certification_551;
lect from cust_certification_551 where早孕会肚子疼吗 cust_id=264;
客户联系人tb_pty_pty_contact
lect from tb_pty_pty_contact_551;
lect from tb_pty_pty_contact_551 where party_id=743;
客户表和客户联系人表之间也可以通过参与人IDparty_id进行连接
集团客户与省对应关系tb_pty_cust_map_htop
lect from tb_pty_cust_map_htop;
lect from tb_pty_cust_map_htop where cust_id=792;
表中的信息是:集团客户在集团页面办理业务的客户
客户表中的字段GROUP_CUST_SEQ与集团客户表中的字段JTCRMID是一样的;
lect from cust_550 a,tb_pty_cust_map_htop b where = and rownum<5
三、账户域
账户表account_551
lect from account_551;
lect t., from account_551 t;
lect t., from account_551 t where =813;
集团账户与省账户对应关系tb_pty_acct_map
lect from tb_pty_acct_map;花园鞋
lect from软怎么组词 tb_pty_acct_map 电影危险关系where crm_acct_id=2286;
与集团客户与省对应的关系是一样的;
账户支付方案payment_plan_551
lect from payment_plan_551;
lect from payment_plan_551 where account_id=5788;
lect from payment_method;规格表
字段payment_mehtod_id:支付方案现金、网银等;ext_payment_plan_id:集团支付方案标识;注:前缀为EXT和JT的都代表集团的意思;
payment_method表是规格表定义的表;payment_plan_551是实例化表;