Zxd.Core/code/Zxd.Entity/Dncms/ResResidWeworkUser.cs

48 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Dncms
{
[Table("res_resid_weworkuser")]
public class ResResidWeworkUser
{
[Key]
public int id { get; set; }
public int uid { get; set; }
public int deptid { get; set; }
public string resid { get; set; }
public string appid { get; set; }
public string appuserid { get; set; }
public string? unionid { get; set; }
public DateTime? first_subscribetime { get; set; }
public DateTime? last_subscribetime { get; set; }
public int status { get; set; }
public DateTime ctime { get; set; }
public int isdelete { get; set; }
public DateTime utime { get; set; }
}
[Table("res_resid_weworkuser_log")]
public class ResResidWeworkUserLog
{
[Key]
public int id { get; set; }
public int mainid { get; set; }
public int uid { get; set; }
public int deptid { get; set; }
public string resid { get; set; }
public string appid { get; set; }
public string appuserid { get; set; }
public string? unionid { get; set; }
public DateTime? first_subscribetime { get; set; }
public DateTime? last_subscribetime { get; set; }
public int status { get; set; }
public DateTime ctime { get; set; }
public int isdelete { get; set; }
public DateTime utime { get; set; }
}
}