23 lines
647 B
C#
23 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.WxEntity
|
|
{
|
|
public class Wx_WorkAccount
|
|
{
|
|
[Key]
|
|
public int pkid { get; set; }
|
|
public string username { get; set; }
|
|
public string alias { get; set; }
|
|
public string conremark { get; set; }
|
|
public string nickname { get; set; }
|
|
public string pyinitial { get; set; }
|
|
public int type { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public int? isfenghao { get; set; }
|
|
public DateTime? fenghaotime { get; set; }
|
|
}
|
|
}
|