username@email.com
2024-05-29 7a3a4f8012a72f80d8dd62064a76655c803da864
CoreCms.Net.Model/Entities/User/CoreCmsUser.cs
@@ -1,12 +1,13 @@
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 核心内容管理系统
 *                Web: https://www.corecms.net
 *             Author: 大灰灰
 *              Email: jianweie@163.com
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统
 *                Web: http://chuanyin.com
 *             Author:
 *              Email: 34161541@qq.com
 *         CreateTime: 2021-06-08 22:14:59
 *        Description: 暂无
***********************************************************************/
***********************************************************************/
using Chuanyin.Attribute;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
@@ -16,6 +17,7 @@
    /// 用户表
    /// </summary>
    [SugarTable("CoreCmsUser",TableDescription = "用户表")]
    //[SqlCodeFirst]
    public partial class CoreCmsUser
    {
        /// <summary>
@@ -135,6 +137,15 @@
        [SugarColumn(ColumnDescription = "关联三方账户")]
        [Required(ErrorMessage = "请输入{0}")]
        public System.Int32 userWx { get; set; }
        /// <summary>
        /// 是否是推广人员
        /// </summary>
        [Display(Name = "是否是推广人员")]
        [SugarColumn(ColumnDescription = "是否是推广人员",IsNullable =true)]
        [Required(ErrorMessage = "请输入{0}")]
        public bool? IsBaifenPromotion { get; set; }
        /// <summary>
        /// 删除标志 有数据就是删除
        /// </summary>
@@ -142,5 +153,17 @@
        [SugarColumn(ColumnDescription = "删除标志 有数据就是删除")]
        [Required(ErrorMessage = "请输入{0}")]
        public System.Boolean isDelete { get; set; }
        /// <summary>
        /// 是否是计划订单用户    ALTER TABLE [CoreCmsUser] ADD  [isplanorder] [nvarchar](255) NULL;
        /// </summary>
        [Display(Name = "计划订单id")]
        [StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")]
        [SugarColumn(IsNullable = true)]
        public System.String isplanorder { get; set; }
    }
}