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