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.

44 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace DSWeb.Common.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; }
public string HOMEADDRESS { get; set; }
public string REMARK { get; set; }
public string CREATEUSER { get; set; }
public DateTime? CREATETIME { get; set; }
public string MODIFIEDUSER { get; set; }
public DateTime? MODIFIEDTIME { get; set; }
public string EMERGUSER { get; set; }
public string EMERGPHONE { get; set; }
public string EMERGEMAIL { get; set; }
public string POSTCODE { get; set; }
public string QQ { get; set; }
public string MSN { get; set; }
public string FINANCESOFTCODE { get; set; }
public string IMAGEURL { get; set; }
public string SIGNATUREURL { get; set; }
public string FaSongFangDaiMa { get; set; }
public string JieShouFangDaiMa { get; set; }
public string QdPortUserName { get; set; }
public string QdPortPassword { get; set; }
}
}