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_baseinfo")] public class UserBaseInfo { [Key] public string GID { get; set; } public string USERID { get; set; } public string COMPANYNAME { get; set; } public string DEPTNAME { get; set; } public string OFFICEPHONE { get; set; } public string HOMEPHONE { get; set; } public string MOBILE { get; set; } public string FAX { get; set; } public string EMAIL1 { get; set; } public string EMAIL2 { get; set; } } }