sys_user_client_rel.cs 518 Bytes
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("sys_user_client_rel")]
    public partial class sys_user_client_rel
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(Length = 50, IsNullable = false)]
        public string userAccount { get; set; }

        [SugarColumn(IsNullable = false)]
        public Guid clientKeys { get; set; }

    }
}