80 lines
1.9 KiB
C#
80 lines
1.9 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Action
|
|
{
|
|
[Table("ac_customer_behavior_log")]
|
|
public class CustomerBehaviorLog
|
|
{
|
|
public CustomerBehaviorLog()
|
|
{
|
|
}
|
|
|
|
[Key]
|
|
public int id { get; set; }
|
|
|
|
public DateTime? act_date { get; set; }
|
|
|
|
public DateTime? act_time { get; set; }
|
|
|
|
public string? appid { get; set; }
|
|
public string? appuserid { get; set; }
|
|
|
|
public string? resid { get; set; }
|
|
public string? umid { get; set; }
|
|
|
|
public string? unionid { get; set; }
|
|
|
|
public int? uid { get; set; }
|
|
|
|
public int? customerid { get; set; }
|
|
|
|
public int? user_type { get; set; }
|
|
|
|
public int eventid { get; set; }
|
|
|
|
public string? eventname { get; set; }
|
|
public string? eventtypename { get; set; }
|
|
|
|
public string? eventmemo { get; set; }
|
|
|
|
public string? others { get; set; }
|
|
|
|
public int? scenetype { get; set; }
|
|
|
|
public string? scenetypename { get; set; }
|
|
|
|
public string? sceneid { get; set; }
|
|
|
|
public string? sceneidname { get; set; }
|
|
|
|
public string? scenename { get; set; }
|
|
|
|
public string? sceneext { get; set; }
|
|
public string? ip { get; set; }
|
|
|
|
public int? channel { get; set; }
|
|
|
|
public int deptid { get; set; }
|
|
|
|
public string? productplat { get; set; }
|
|
|
|
public string? productplatname { get; set; }
|
|
|
|
public string? sinkClickhouseTable { get; set; }
|
|
|
|
public DateTime? leavetime { get; set; }
|
|
|
|
public DateTime? updatetime { get; set; }
|
|
|
|
public DateTime? ctime { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
public int? neweventid { get; set; }
|
|
public string? neweventname { get; set; }
|
|
}
|
|
} |