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

86 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Action
{
[Table("ac_employee_todoitem")]
public class EmployeeTodoitem
{
[Key]
public int? id { get; set; }
public int logid { get; set; }
public int? eid { get; set; }
public string? ename { get; set; }
public string? content { get; set; }
public bool? done { get; set; }
public DateTime? ctime { get; set; }
public DateTime? utime { get; set; }
public string? Nickname { get; set; }
public string? Headimgurl { get; set; }
public int? isread { get; set; } = 0;
public DateTime? readtime { get; set; }
#region
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 DateTime? leavetime { get; set; }
public int? neweventid { get; set; }
public string? neweventname { get; set; }
#endregion
}
}