You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/MvcShipping/DB/UserBaseInfo.cs

25 lines
750 B
C#

2 years ago
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; }
}
}