26 lines
518 B
C#
26 lines
518 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_hhuser")]
|
|
public class PcWwHhuser
|
|
{
|
|
[Key]
|
|
public string userid { get; set; }
|
|
|
|
[Key]
|
|
public string corpid { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string mobile { get; set; }
|
|
|
|
public string exinfo { get; set; }
|
|
|
|
public DateTime lastupdate { get; set; }
|
|
}
|
|
} |