Blame view

sys/Hh.Mes.POJO/WebEntity/base/base_project_client_rel.cs 491 Bytes
1
2
3
4
5
6
7
8
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Security.Principal;
using System.Text;

namespace Hh.Mes.POJO.Entity
{
9
10
11
    /// <summary>
    /// 项目客户关系信息表
    /// </summary>
12
13
14
15
16
17
18
19
20
21
    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; }
    }
}