using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.MvcShipping.DB { [Table("user")] public class User { [Key] public string GID { get; set; } public string USERNAME { get; set; } public string CODENAME { get; set; } public string PASSWORD { get; set; } public string SHOWNAME { get; set; } public bool? ISDELETED { get; set; } public bool? ISDISABLE { get; set; } public string NOCODE { get; set; } public string OPENID { get; set; } public string WeChatAccount { get; set; } public string DingTalkAccount { get; set; } } }