21 lines
554 B
C#
21 lines
554 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Ww_Extuser
|
|
{
|
|
[Key]
|
|
public string userid { get; set; }
|
|
public string corpid { get; set; }
|
|
public string name { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? lastupdate { get; set; }
|
|
public string exinfo { get; set; }
|
|
public string avatar { get; set; }
|
|
public string unionid { get; set; }
|
|
}
|
|
}
|