| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using dodohold.core;
- namespace molilian.core
- {
- [Table("cps_api_syle")]
- public class CpsApiStyleDTO
- {
- [Key]
- public int id { get; set; }
- public string style_code { get; set; }
- public string title { get; set; }
- public string sub_title { get; set; }
- public string style_name { get; set; }
- public string description { get; set; }
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool status { get; set; }
- }
- [Table("cps_pool")]
- public class CpsPoolDTO
- {
- [Key]
- 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 bool status { get; set; }
- }
- [Table("cps_links")]
- public class CpsLinksDTO
- {
- [Key]
- public int id { get; set; }
- public int channel_id { get; set; }
- public string channel_code { get; set; }
- public string style_code { get; set; }
- public string pid { get; set; } = string.Empty;
- public string category { get; set; } = string.Empty;
- public string name { get; set; }
- public string description { get; set; }
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool 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 int priority_weight { get; set; }
- public int daily_calls_limit { get; set; }
- public int hourly_calls_limit { get; set; }
- public int current_hourly_calls { get; set; }
- public int current_daily_calls { get; set; }
- public int time_range { get; set; }
- public string title { get; set; } = string.Empty;
- }
- }
|