1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using SqlSugar; using System; using System.Collections.Generic; using System.Security.Principal; using System.Text; namespace Hh.Mes.POJO.Entity { 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; } } }