| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace molilian.core
- {
- /// <summary>
- /// 报告数据实体类
- /// </summary>
- public class DailyLogsDTO
- {
- public int id { get; set; }
- public DateTime log_date { get; set; } = DateTime.Now.Date;
- public int channel { get; set; } = 0;
- public int accountId { get; set; } = 0;
- public string accountName { get; set; } = string.Empty;
- public DateTime create_time { get; set; } = DateTime.Now;
- public DateTime last_time { get; set; } = DateTime.Now;
- public int total_count { get; set; } = 0;
- public int abandon_count { get; set; } = 0;
- public string abandon_percentage { get; set; } = string.Empty;
- public int success_count { get; set; } = 0;
- public string success_percentage { get; set; } = string.Empty;
- public int coupon_total_count { get; set; } = 0;
- public int coupon_abandon_count { get; set; } = 0;
- public string coupon_abandon_percentage { get; set; } = string.Empty;
- public int coupon_success_count { get; set; } = 0;
- public string coupon_success_percentage { get; set; } = string.Empty;
- public int parse_total_count { get; set; } = 0;
- public int parse_abandon_count { get; set; } = 0;
- public string parse_abandon_percentage { get; set; } = string.Empty;
- public int parse_success_count { get; set; } = 0;
- public string parse_success_percentage { get; set; } = string.Empty;
- public int tool_total_count { get; set; } = 0;
- public int tool_abandon_count { get; set; } = 0;
- public string tool_abandon_percentage { get; set; } = string.Empty;
- public int tool_success_count { get; set; } = 0;
- public string tool_success_percentage { get; set; } = string.Empty;
- public int jd_parse_total_count { get; set; } = 0;
- public int jd_parse_abandon_count { get; set; } = 0;
- public string jd_parse_abandon_percentage { get; set; } = string.Empty;
- public int jd_parse_success_count { get; set; } = 0;
- public string jd_parse_success_percentage { get; set; } = string.Empty;
- }
- }
|