12345678910111213141516171819202122232425262728293031323334353637383940 |
- -- **************************************************
- -- 保险公司投诉管理系统定时任务生成的报表统计文件
- -- 大部分的表至少符合第三范式
- -- 数据库,表,字段命名规范见同目录下的数据库设计规范
- -- 数据库设计者:赵静
- -- 设计时间:2017-10-31
- -- **************************************************
- -- **************************************************
- -- Name: x_rep_appealsource
- -- Purpose: 客诉来源量每日统计
- -- Deviser: 赵静
- -- Devistime: 2017-10-31
- -- **************************************************
- -- drop table x_rep_appealsource;
- create table x_rep_appealsource
- (
- KeyID VARCHAR(60) not null, -- 数据编号
- FilialeID VARCHAR(40) , -- 被诉分公司编号 (主被投诉人信息冗余)
- FilialeName VARCHAR(60) , -- 被诉分公司名称(主被投诉人信息冗余)
- CentreCompanyID VARCHAR(40) , -- 被诉中支编号(主被投诉人信息冗余)
- CentreCompanyName VARCHAR(60) , -- 被诉中支名称(主被投诉人信息冗余)
- AppealType VARCHAR(40) , -- 客诉类别
- SourceType01 int , -- 电话中心投诉量
- SourceType02 int , -- 网点柜面投诉量
- SourceType03 int , -- 财险官网投诉量
- SourceType04 int , -- 集团网站投诉量
- SourceType05 int , -- 财险微信公众号投诉量
- SourceType06 int , -- 保监会投诉系统投诉量
- SourceType07 int , -- 媒体转办投诉量
- SourceType08 int , -- 其他监管投诉量
- SourceType09 int , -- 其他投诉量
- SourceTypeTOtal int , -- 合计
- DataDate VARCHAR(10) , -- 数据日期 存贮到年月日
- constraint PK_x_rep_appealsource primary key (KeyID)
- );
- create index IX_x_rep_appealsource on x_rep_appealsource(DataDate);
- delete from x_rep_appealsource;
-
|