base_project_client_rel.cs 418 Bytes
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; }
    }
}