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.
19 lines
461 B
C#
19 lines
461 B
C#
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; }
|
|
}
|
|
} |