58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ToDoWorker.Dto
|
|
{
|
|
public class KafkaEvent
|
|
{
|
|
public string? data { get; set; }
|
|
public string? tableName { get; set; }
|
|
}
|
|
|
|
public class TestDto
|
|
{
|
|
public string? act_date { get; set; }
|
|
}
|
|
|
|
public class EventDto
|
|
{
|
|
public string? act_date { get; set; }
|
|
public long? act_time { get; set; }
|
|
public string? appid { get; set; }
|
|
public string? appuserid { get; set; }
|
|
public int? channel { get; set; }
|
|
public int? customerid { get; set; }
|
|
public int? deptid { get; set; }
|
|
public string? env { get; set; }
|
|
public int eventid { get; set; }
|
|
public string? eventmemo { get; set; }
|
|
public string? eventname { get; set; }
|
|
public string? ip { get; set; }
|
|
public string? others { get; set; }
|
|
public string? productplat { get; set; }
|
|
public string? productplatname { get; set; }
|
|
public string? resid { get; set; }
|
|
public string? umid { get; set; }
|
|
public string? sceneext { get; set; }
|
|
public string? sceneid { get; set; }
|
|
public string? sceneidname { get; set; }
|
|
public string? scenename { get; set; }
|
|
public int? scenetype { get; set; }
|
|
public string? scenetypename { get; set; }
|
|
public string? sinkClickhouseTable { get; set; }
|
|
|
|
public int? uid { get; set; }
|
|
public string? unionid { get; set; }
|
|
public int? user_type { get; set; }
|
|
public int? with_eid { get; set; }
|
|
public int? with_groupid { get; set; }
|
|
public int? with_orgid { get; set; }
|
|
public long? leavetime { get; set; }
|
|
public DateTime? update_time { get; set; }
|
|
public DateTime TaskTime { get; set; }
|
|
public int RetryCount { get; set; }
|
|
}
|
|
} |