26 lines
714 B
C#
26 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Dncms
|
|
{
|
|
[Table("res_resid_weworkuser_eventlog")]
|
|
public class ResResidWeworkEventLog
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string type { get; set; }
|
|
public string cid { get; set; }
|
|
public string appid { get; set; }
|
|
public string appuserid { get; set; }
|
|
public string userid { get; set; }
|
|
public int? deptid { get; set; }
|
|
public int? olddeptid { get; set; }
|
|
public string eventJson { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
}
|
|
}
|