广东移动BOSS系统业务笔记、学习笔记 下载本文

2.2.8. 价格计划

包含产品资费、资源、优惠、促销、预缴等各种资费单元的统一价格策略,产品/策划使用价格计划进行资费定义的包装

BOSS资费

BOSS产品中定义的一些列资费费率、免费资源量、固定月租费用等信息,CRM产品只是通过BOSS产品ID进行引用

一次性资费

奖励资费:赠送话费、赠送积分等

营业资费:押金、预存、卡费、设备安装费、扣减积分等 资源资费:优惠购机中的手机费用等

CRM只关系一次性资费。比如:免费资源量,如果是一次性赠送的则归CRM管,如果是周期性的,则归BOSS管。

2.3. 新CRM产品物理模型

PCE.pdm 新CRM产品查询SQL.sql-- 全球通88套餐G3版288元 111042110169 -- 产品单元核心表,entity_id 为产品受理需要的权限实体ID select * from up_product_item a where a.name like '%全球通%'; select * from up_product_item a where a.product_item_id =121030500500; select * from up_product_item a where a.product_item_id = 131130500500; -- 策划实体 select * from up_offer a where a.offer_id = 111042110169; -- 策划下产品 select * from up_plan_prod_rel a where a.product_item_id = 111042110169; -- 产品 select * from up_service_price a where a.service_price_id = 121030500500; -- 产品单元关系表,产品关联服务、资费 select * from up_item_relat a where a.product_item_id =121030500500; -- 服务实体表 select * from up_service a where a.service_id =131130500500; -- 资费 select * from Up_Price_Plan a where a.price_plan_id = 131130500500; -- 分摊规则 select * from up_apportion_rule; -- 属性 select * from up_attr; -- 属性 下拉枚举 select * from up_field_type; -- 分组 select * from up_product_item a where a.product_item_id = 200000201005; select * from UP_kind; select * from up_product_item a where a.product_item_id = 200024200663; select * from Up_Item_Relat a where a.relat_product_item_id = 200024200663; select * from Up_Item_Relat a where a.product_item_id =200024200663; -- FEATURE 定义 select * from up_feature_spec; -- feature 值 select * from up_item_feature; select * from up_item_relat_feature; -- 产品单元地市配置 select * from up_item_region; -- 策划关联策划 select * from up_plan_plan_rel; -- 前项限制 select * from up_offer_pre_limit a where offer_id = 111200000653; -- 前项限制参数 select * from up_pre_lmt_param a where a.param_id = 5343; -- 产品目录定义 select * from up_prod_item_catalog; -- 产品单元关联产品目录 select * from up_item_catalog; -- 中心业务定义表 select * from up_sp_service; select * from up_sp_info;

产品单元表、产品单元关系:

除销售目录无产品单元以外,其余概念策划、产品、服务、属性等都会有产品单元。

Lucence全文搜索时,就是用到名称和字符化产品名称(拼音首写)。通过单元类型在区别产品、服务、属性等等。生效时间和使用生效时间是等同的,只要配置其中一个,就算是一样的。失效时间,任何一个超出有效期,就失效。删除标识,若为1则策划有效,为0则策划无效。

互斥依赖这些则体现在产品单元关系表里。产品单元关系表包含3个表:策划和策划关系表、策划和产品关系表、其他产品单元间的关系表。

参考:南基CRM产品单元关系。

贵州也有2个上述文档维护。访问产品都是通过IProductFSV里的接口访问,无法直接访问产品表。

2.4. 新老系统典型业务场景配置对比

2.4.1. 基本策划

策划间关系有:连带策划、相容策划(可选增值策划),连带可以配置为可选。