| 1234567891011121314151617181920212223242526 |
- namespace molilian.core
- {
- public class YourEntityClass
- {
- public int id { get; set; }
- public int channel_id { get; set; }
- public string channel_code { get; set; }
- public string name { get; set; }
- public string end_point { get; set; }
- public string nodeName { get; set; }
- public string company { get; set; }
- public string description { get; set; }
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public sbyte status { get; set; }
- public string deeplink { get; set; }
- public string token { get; set; }
- public DateTime start_time { get; set; }
- public DateTime end_time { get; set; }
- public sbyte priority_weight { get; set; }
- public int current_hourly_calls { get; set; }
- public int current_daily_calls { get; set; }
- public int time_range { get; set; }
- }
- }
|