Zxd.Core/code/Zxd.Entity/Action/Eventdwd.cs

66 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Action
{
public class Eventdwd
{
public DateTime? act_date { get; set; }
[Key]
public DateTime? act_time { get; set; }
public string? appid { get; set; }
public string? appuserid { get; set; }
public string? resid { get; set; }
public string? unionid { get; set; }
[Key]
public int? uid { get; set; }
public int? customerid { get; set; }
public int? user_type { get; set; }
[Key]
public int eventid { get; set; }
public string? eventname { 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 DateTime? leavetime { get; set; }
public int? with_eid { get; set; }
public int? with_groupid { get; set; }
public int? with_orgid { get; set; }
}
}