1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CP.Web
- {
-
-
-
- public class TrendChartSearchField
- {
-
-
-
- public int ChartId { get; set; }
-
-
-
- public int Record { get; set; }
-
-
-
- public int StartTerm { get; set; }
-
-
-
- public int EndTerm { get; set; }
-
-
-
- public TrendChartType ChartType { get; set; }
-
-
-
- public int Year { get; set; }
-
-
-
- public int NumRepeat { get; set; }
-
-
-
- public int Week { get; set; }
- }
-
-
-
- public enum TrendChartType
- {
-
-
-
- PC = 1,
-
-
-
- WAP = 2,
-
-
-
- TV = 3
- }
- }
|