using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace DSWeb.Common.DB { //代理公司与用户关系 [Table("user_company")] public class UserCompany { [Key] public string GID { get; set; } public string COMPANYID { get; set; } public string USERID { get; set; } } }