服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-06-13 bcd6abbcec6ed4cd500fbc6ed26e79f038ba5bb7
Tiger.Model.Net/Entitys/SYS/SYS_USERINGROUP.cs
@@ -7,54 +7,59 @@
namespace Tiger.Model
{
   /// <summary>
   /// 实体:用户组与用户关系
   /// 实体:用户组与用户关系
   /// </summary>
   [Description("Primary:USERGROUP_CODE,USER_ID")]
   [Serializable]
   [SugarTable("SYS_USERINGROUP")]
   public class SYS_USERINGROUP : iDBEntity
   {
      #region 构造函数
      #region 构造函数
      /// <summary>
      /// 实体:用户组与用户关系
      /// 实体:用户组与用户关系
      /// </summary>
      public SYS_USERINGROUP() {}
      #endregion
      #region 公共属性
      #region 公共属性
      /// <summary>
      /// 主键 用户组代码
      /// 主键 用户组代码
      /// </summary>
      [SugarColumn(IsPrimaryKey = true)]
      public string USERGROUP_CODE { get; set; }
      /// <summary>
      /// 主键 用户ID
      /// </summary>
      public string USER_ID { get; set; }
      #endregion
        /// <summary>
        /// 主键 用户ID
        /// </summary>
        [SugarColumn(IsPrimaryKey = true)]
        public string USER_ID { get; set; }
        /// <summary>
        /// 备注
        /// </summary>
        public string REMARK { get; set; }
        #endregion
      #region 虚拟属性
      /*例子
        #region 虚拟属性
        /*例子
      [SugarColumn(IsIgnore = true)]
      public string FieldName { get; set; }
      */
      #endregion
        #endregion
      #region 枚举变量
      /*例子
        #region 枚举变量
        /*例子
      public enum FieldNames
      {
         [Description("枚举描述0")]
         [Description("枚举描述0")]
         Enum0,
         [Description("枚举描述1")]
         [Description("枚举描述1")]
         Enum1,
      }
      */
      #endregion
        #endregion
      #region 公共方法
        #region 公共方法
      #endregion
        #endregion
   }//endClass
    }//endClass
}