mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 10:29:50 +08:00
# 2022-05-07
### 1.4.4开源社区版: 无 ### 0.3.9 专业版: 【新增】增加[coreshop-advert]广告组件,对标后台管理功能的广告管理,前端可直接使用代码<coreshop-advert codes="广告位code"></coreshop-advert>来实现在前端任何地方引用广告组件。 【新增】商城栏目页面增加广告组件使用示例。 【新增】用户表增加【是否开启自动升级】【发展用户数量】【订单消费金额】【充值总金额】【权重优先级】字段,并完善用户升级队列处理逻辑。 【调整】文章管理的修改和编辑弹窗模式,修改为单页面模式,解决弹窗情况下编辑器某些按钮因为z-index导致的被阻挡显示的问题。 【优化】优化首页组件的样式,将一些常见方法进行统一封装到混合器里面。
This commit is contained in:
@@ -3,11 +3,13 @@
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2022/5/8 22:18:48
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
***********************************************************************/
|
||||
|
||||
using SqlSugar;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
@@ -15,37 +17,112 @@ namespace CoreCms.Net.Model.Entities
|
||||
/// <summary>
|
||||
/// 用户等级表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserGrade",TableDescription = "用户等级表")]
|
||||
public partial class CoreCmsUserGrade
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户等级表
|
||||
/// 构造函数
|
||||
/// </summary>
|
||||
public CoreCmsUserGrade()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// id
|
||||
/// </summary>
|
||||
[Display(Name = "id")]
|
||||
[SugarColumn(ColumnDescription = "id", IsPrimaryKey = true, IsIdentity = true)]
|
||||
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
|
||||
|
||||
|
||||
public System.Int32 id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
[Display(Name = "标题")]
|
||||
[SugarColumn(ColumnDescription = "标题")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(60, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String title { get; set; }
|
||||
[StringLength(maximumLength:60,ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String title { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 是否默认
|
||||
/// </summary>
|
||||
[Display(Name = "是否默认")]
|
||||
[SugarColumn(ColumnDescription = "是否默认")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDefault { get; set; }
|
||||
|
||||
|
||||
|
||||
public System.Boolean isDefault { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 开启自动升级
|
||||
/// </summary>
|
||||
[Display(Name = "开启自动升级")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Boolean isOpenUpgrade { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 发展用户数量
|
||||
/// </summary>
|
||||
[Display(Name = "发展用户数量")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 developNum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 订单消费金额
|
||||
/// </summary>
|
||||
[Display(Name = "订单消费金额")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 expenditureMoney { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 充值总金额
|
||||
/// </summary>
|
||||
[Display(Name = "充值总金额")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 rechargeAmount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 权重优先级
|
||||
/// </summary>
|
||||
[Display(Name = "权重优先级")]
|
||||
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
|
||||
public System.Int32 prioritySortId { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user