24 lines
644 B
C#
24 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Entity.Dncms
|
|
{
|
|
[Table("WeworkExternalUser")]
|
|
public class WeworkExternalUser
|
|
{
|
|
public string Appid { get; set; }
|
|
public string Userid { get; set; }
|
|
public string Appid_ext { get; set; }
|
|
public string Externaluserid { get; set; }
|
|
public int deptid { get; set; }
|
|
public string unionid { get; set; }
|
|
public int subscribe { get; set; }
|
|
public DateTime? subscribetime { get; set; }
|
|
public DateTime? regdate { get; set; }
|
|
|
|
}
|
|
}
|