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.

32 lines
1.0 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("contact_person")]
public class ContactPerson
{
[Key]
public string GID { get; set; }
public string Name { get; set; }
public string Sex { get; set; }
public string CompName { get; set; }
public string CompAddr { get; set; }
public string Tel { get; set; }
public string Mobile { get; set; }
public string EMail { get; set; }
public string QQ { get; set; }
public DateTime? Birthday { get; set; }
public string Duty { get; set; }
public string UserId { get; set; }
public string CompId { get; set; }
public DateTime? CreateTime { get; set; }
public string ModityUser { get; set; }
public DateTime? ModityTime { get; set; }
public int SORT { get; set; }
}
}