using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace BookingJieFeng.DB.Model { [Table("SYS_USER")] public class SysUser { [Key] public string GID { get; set; } public string NAME { get; set; } public string TEL { get; set; } public string MOBILE { get; set; } public string PASSWORD { get; set; } public string EMAIL { get; set; } public string COMPANY_NAME { get; set; } public string COMPANY_SHORT_NAME { get; set; } public string COMPANY_CODE { get; set; } public string ADDRESS { get; set; } public string IDENTIFICATION_STATE { get; set; } public bool IS_ADMIN { get; set; } public DateTime REG_TIME { get; set; } public string PIC_PATH { get; set; } public string REMARK { get; set; } public string PARENT_ID { get; set; } public string STATUS { get; set; } public bool REC_BC_MAIL { get; set; } public string INFO_CLIENT { get; set; } } }