29 lines
609 B
C#
29 lines
609 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.PcWework
|
|
{
|
|
[Table("ww_extuser")]
|
|
public class PcWwExtuser
|
|
{
|
|
[Key]
|
|
public string userid { get; set; }
|
|
|
|
[Key]
|
|
public string corpid { get; set; }
|
|
|
|
public string name { get; set; }
|
|
public string avatar { get; set; }
|
|
|
|
public DateTime ctime { get; set; }
|
|
|
|
public DateTime lastupdate { get; set; }
|
|
|
|
public string unionid { get; set; }
|
|
|
|
public string exinfo { get; set; }
|
|
}
|
|
} |