RetationDateConstants.cs 668 B

123456789101112131415161718192021
  1. namespace JiaZhiQuan.Common
  2. {
  3. public static class RetationDateConstants
  4. {
  5. /// <summary>
  6. /// 留存的天数统计,不是以下天数的不记录
  7. /// </summary>
  8. public static int[] RetainDay = new[] { 1, 2, 3, 4, 5, 6, 7, 14, 30 };
  9. /// <summary>
  10. /// 留存的周数统计,不是以下周数的不记录
  11. /// </summary>
  12. public static int[] RetainWeek = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
  13. /// <summary>
  14. /// 留存的月数统计,不是以下月数的不记录
  15. /// </summary>
  16. public static int[] RetainMonth = new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
  17. }
  18. }