base_project_client_rel.cs
491 Bytes
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Security.Principal;
using System.Text;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// 项目客户关系信息表
/// </summary>
public partial class base_project_client_rel: base_Entity
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
public Guid projectKeys { get; set; }
public Guid clientKeys { get; set; }
}
}