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