报表统计定时任务.sql 1.9 KB

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