mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:03:27 +08:00
添加项目文件。
This commit is contained in:
139
CoreCms.Net.Model/Entities/Agent/CoreCmsAgent.cs
Normal file
139
CoreCms.Net.Model/Entities/Agent/CoreCmsAgent.cs
Normal file
@@ -0,0 +1,139 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:58
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsAgent",TableDescription = "代理商表")]
|
||||
public partial class CoreCmsAgent
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商表
|
||||
/// </summary>
|
||||
public CoreCmsAgent()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 用户Id
|
||||
/// </summary>
|
||||
[Display(Name = "用户Id")]
|
||||
[SugarColumn(ColumnDescription = "用户Id")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 userId { get; set; }
|
||||
/// <summary>
|
||||
/// 代理商名称
|
||||
/// </summary>
|
||||
[Display(Name = "代理商名称")]
|
||||
[SugarColumn(ColumnDescription = "代理商名称", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String name { get; set; }
|
||||
/// <summary>
|
||||
/// 代理商等级
|
||||
/// </summary>
|
||||
[Display(Name = "代理商等级")]
|
||||
[SugarColumn(ColumnDescription = "代理商等级")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 gradeId { get; set; }
|
||||
/// <summary>
|
||||
/// 手机号
|
||||
/// </summary>
|
||||
[Display(Name = "手机号")]
|
||||
[SugarColumn(ColumnDescription = "手机号", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String mobile { get; set; }
|
||||
/// <summary>
|
||||
/// 微信号
|
||||
/// </summary>
|
||||
[Display(Name = "微信号")]
|
||||
[SugarColumn(ColumnDescription = "微信号", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String weixin { get; set; }
|
||||
/// <summary>
|
||||
/// qq号
|
||||
/// </summary>
|
||||
[Display(Name = "qq号")]
|
||||
[SugarColumn(ColumnDescription = "qq号", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String qq { get; set; }
|
||||
/// <summary>
|
||||
/// 店铺名称
|
||||
/// </summary>
|
||||
[Display(Name = "店铺名称")]
|
||||
[SugarColumn(ColumnDescription = "店铺名称", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String storeName { get; set; }
|
||||
/// <summary>
|
||||
/// 店铺Logo
|
||||
/// </summary>
|
||||
[Display(Name = "店铺Logo")]
|
||||
[SugarColumn(ColumnDescription = "店铺Logo", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String storeLogo { get; set; }
|
||||
/// <summary>
|
||||
/// 店铺Banner
|
||||
/// </summary>
|
||||
[Display(Name = "店铺Banner")]
|
||||
[SugarColumn(ColumnDescription = "店铺Banner", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String storeBanner { get; set; }
|
||||
/// <summary>
|
||||
/// 店铺简介
|
||||
/// </summary>
|
||||
[Display(Name = "店铺简介")]
|
||||
[SugarColumn(ColumnDescription = "店铺简介", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String storeDesc { get; set; }
|
||||
/// <summary>
|
||||
/// 审核状态
|
||||
/// </summary>
|
||||
[Display(Name = "审核状态")]
|
||||
[SugarColumn(ColumnDescription = "审核状态")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 verifyStatus { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "更新时间")]
|
||||
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 审核时间
|
||||
/// </summary>
|
||||
[Display(Name = "审核时间")]
|
||||
[SugarColumn(ColumnDescription = "审核时间", IsNullable = true)]
|
||||
public System.DateTime? verifyTime { get; set; }
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
[Display(Name = "是否删除")]
|
||||
[SugarColumn(ColumnDescription = "是否删除")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDelete { get; set; }
|
||||
}
|
||||
}
|
||||
76
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGoods.cs
Normal file
76
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGoods.cs
Normal file
@@ -0,0 +1,76 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:58
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商品池
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsAgentGoods",TableDescription = "代理商品池")]
|
||||
public partial class CoreCmsAgentGoods
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商品池
|
||||
/// </summary>
|
||||
public CoreCmsAgentGoods()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 商品序列
|
||||
/// </summary>
|
||||
[Display(Name = "商品序列")]
|
||||
[SugarColumn(ColumnDescription = "商品序列")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 goodId { get; set; }
|
||||
/// <summary>
|
||||
/// 商品编辑时间
|
||||
/// </summary>
|
||||
[Display(Name = "商品编辑时间")]
|
||||
[SugarColumn(ColumnDescription = "商品编辑时间", IsNullable = true)]
|
||||
public System.DateTime? goodRefreshTime { get; set; }
|
||||
/// <summary>
|
||||
/// 排序
|
||||
/// </summary>
|
||||
[Display(Name = "排序")]
|
||||
[SugarColumn(ColumnDescription = "排序")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 sortId { get; set; }
|
||||
/// <summary>
|
||||
/// 是否启用
|
||||
/// </summary>
|
||||
[Display(Name = "是否启用")]
|
||||
[SugarColumn(ColumnDescription = "是否启用")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isEnable { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 最后更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "最后更新时间")]
|
||||
[SugarColumn(ColumnDescription = "最后更新时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
}
|
||||
}
|
||||
47
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGoodsPartial.cs
Normal file
47
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGoodsPartial.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商品池
|
||||
/// </summary>
|
||||
public partial class CoreCmsAgentGoods
|
||||
{
|
||||
/// <summary>
|
||||
/// 商品名称
|
||||
/// </summary>
|
||||
[Display(Name = "商品名称")]
|
||||
[SqlSugar.SugarColumn(IsIgnore = true)]
|
||||
public string goodName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 商品缩略图
|
||||
/// </summary>
|
||||
[Display(Name = "商品缩略图")]
|
||||
[SqlSugar.SugarColumn(IsIgnore = true)]
|
||||
public string goodImage { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 商品最后更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "商品最后更新时间")]
|
||||
[SqlSugar.SugarColumn(IsIgnore = true)]
|
||||
public DateTime? goodUpdateTime { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
85
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGrade.cs
Normal file
85
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentGrade.cs
Normal file
@@ -0,0 +1,85 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:58
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商等级设置表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsAgentGrade",TableDescription = "代理商等级设置表")]
|
||||
public partial class CoreCmsAgentGrade
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商等级设置表
|
||||
/// </summary>
|
||||
public CoreCmsAgentGrade()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 等级序列
|
||||
/// </summary>
|
||||
[Display(Name = "等级序列")]
|
||||
[SugarColumn(ColumnDescription = "等级序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 等级名称
|
||||
/// </summary>
|
||||
[Display(Name = "等级名称")]
|
||||
[SugarColumn(ColumnDescription = "等级名称", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String name { get; set; }
|
||||
/// <summary>
|
||||
/// 是否默认等级
|
||||
/// </summary>
|
||||
[Display(Name = "是否默认等级")]
|
||||
[SugarColumn(ColumnDescription = "是否默认等级")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDefault { get; set; }
|
||||
/// <summary>
|
||||
/// 是否自动升级
|
||||
/// </summary>
|
||||
[Display(Name = "是否自动升级")]
|
||||
[SugarColumn(ColumnDescription = "是否自动升级")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isAutoUpGrade { get; set; }
|
||||
/// <summary>
|
||||
/// 价格加成方式
|
||||
/// </summary>
|
||||
[Display(Name = "价格加成方式")]
|
||||
[SugarColumn(ColumnDescription = "价格加成方式")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 defaultSalesPriceType { get; set; }
|
||||
/// <summary>
|
||||
/// 价格加成值
|
||||
/// </summary>
|
||||
[Display(Name = "价格加成值")]
|
||||
[SugarColumn(ColumnDescription = "价格加成值")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 defaultSalesPriceNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 等级排序
|
||||
/// </summary>
|
||||
[Display(Name = "等级排序")]
|
||||
[SugarColumn(ColumnDescription = "等级排序")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 sortId { get; set; }
|
||||
/// <summary>
|
||||
/// 等级说明
|
||||
/// </summary>
|
||||
[Display(Name = "等级说明")]
|
||||
[SugarColumn(ColumnDescription = "等级说明", IsNullable = true)]
|
||||
[StringLength(500, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String description { get; set; }
|
||||
}
|
||||
}
|
||||
91
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentOrder.cs
Normal file
91
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentOrder.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:58
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商订单记录表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsAgentOrder",TableDescription = "代理商订单记录表")]
|
||||
public partial class CoreCmsAgentOrder
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商订单记录表
|
||||
/// </summary>
|
||||
public CoreCmsAgentOrder()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 用户代理商id
|
||||
/// </summary>
|
||||
[Display(Name = "用户代理商id")]
|
||||
[SugarColumn(ColumnDescription = "用户代理商id")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 userId { get; set; }
|
||||
/// <summary>
|
||||
/// 下单用户id
|
||||
/// </summary>
|
||||
[Display(Name = "下单用户id")]
|
||||
[SugarColumn(ColumnDescription = "下单用户id")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 buyUserId { get; set; }
|
||||
/// <summary>
|
||||
/// 订单编号
|
||||
/// </summary>
|
||||
[Display(Name = "订单编号")]
|
||||
[SugarColumn(ColumnDescription = "订单编号", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String orderId { get; set; }
|
||||
/// <summary>
|
||||
/// 结算金额
|
||||
/// </summary>
|
||||
[Display(Name = "结算金额")]
|
||||
[SugarColumn(ColumnDescription = "结算金额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal amount { get; set; }
|
||||
/// <summary>
|
||||
/// 是否结算
|
||||
/// </summary>
|
||||
[Display(Name = "是否结算")]
|
||||
[SugarColumn(ColumnDescription = "是否结算")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 isSettlement { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "更新时间")]
|
||||
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
[Display(Name = "是否删除")]
|
||||
[SugarColumn(ColumnDescription = "是否删除")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDelete { get; set; }
|
||||
}
|
||||
}
|
||||
37
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentOrderPartial.cs
Normal file
37
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentOrderPartial.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 分销商订单记录表
|
||||
/// </summary>
|
||||
public partial class CoreCmsAgentOrder
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 购买人昵称
|
||||
/// </summary>
|
||||
[Display(Name = "购买人昵称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public System.String buyUserNickName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分销商
|
||||
/// </summary>
|
||||
[Display(Name = "分销商")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public System.String distributorName { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
131
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentPartial.cs
Normal file
131
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentPartial.cs
Normal file
@@ -0,0 +1,131 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理商表
|
||||
/// </summary>
|
||||
public partial class CoreCmsAgent
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 总金额
|
||||
/// </summary>
|
||||
[Display(Name = "总金额")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public decimal TotalSettlementAmount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 已结算金额
|
||||
/// </summary>
|
||||
[Display(Name = "已结算金额")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public decimal SettlementAmount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 冻结金额
|
||||
/// </summary>
|
||||
[Display(Name = "冻结金额")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public decimal FreezeAmount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 本月订单数
|
||||
/// </summary>
|
||||
[Display(Name = "本月订单数")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int CurrentMonthOrder { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 今日收益
|
||||
/// </summary>
|
||||
[Display(Name = "今日收益")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public decimal TodayFreezeAmount { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 今日订单
|
||||
/// </summary>
|
||||
[Display(Name = "今日订单")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int TodayOrder { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 今日会员
|
||||
/// </summary>
|
||||
[Display(Name = "今日会员")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int TodayUser { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///上架商品数量
|
||||
/// </summary>
|
||||
[Display(Name = "上架商品数量")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int TotalGoods { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
///所属等级名称
|
||||
/// </summary>
|
||||
[Display(Name = "所属等级名称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string GradeName { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
///是否需要申请
|
||||
/// </summary>
|
||||
[Display(Name = "是否需要申请")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public bool NeedApply { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
///条件说明
|
||||
/// </summary>
|
||||
[Display(Name = "条件说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string ConditionMsg { get; set; } = "";
|
||||
|
||||
/// <summary>
|
||||
///升级条件状态
|
||||
/// </summary>
|
||||
[Display(Name = "升级条件状态")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public bool ConditionStatus { get; set; } = true;
|
||||
|
||||
/// <summary>
|
||||
///升级条件进度
|
||||
/// </summary>
|
||||
[Display(Name = "升级条件进度")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int ConditionProgress { get; set; } = 0;
|
||||
|
||||
|
||||
/// <summary>
|
||||
///店铺查询交互数据
|
||||
/// </summary>
|
||||
[Display(Name = "店铺查询交互数据")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string Store { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
105
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentProducts.cs
Normal file
105
CoreCms.Net.Model/Entities/Agent/CoreCmsAgentProducts.cs
Normal file
@@ -0,0 +1,105 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:58
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理货品池
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsAgentProducts",TableDescription = "代理货品池")]
|
||||
public partial class CoreCmsAgentProducts
|
||||
{
|
||||
/// <summary>
|
||||
/// 代理货品池
|
||||
/// </summary>
|
||||
public CoreCmsAgentProducts()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 关联代理商品池
|
||||
/// </summary>
|
||||
[Display(Name = "关联代理商品池")]
|
||||
[SugarColumn(ColumnDescription = "关联代理商品池")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 agentGoodsId { get; set; }
|
||||
/// <summary>
|
||||
/// 商品序列
|
||||
/// </summary>
|
||||
[Display(Name = "商品序列")]
|
||||
[SugarColumn(ColumnDescription = "商品序列")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 goodId { get; set; }
|
||||
/// <summary>
|
||||
/// 货品序列
|
||||
/// </summary>
|
||||
[Display(Name = "货品序列")]
|
||||
[SugarColumn(ColumnDescription = "货品序列")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 productId { get; set; }
|
||||
/// <summary>
|
||||
/// 货品成本价格
|
||||
/// </summary>
|
||||
[Display(Name = "货品成本价格")]
|
||||
[SugarColumn(ColumnDescription = "货品成本价格")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal productCostPrice { get; set; }
|
||||
/// <summary>
|
||||
/// 货品销售价格
|
||||
/// </summary>
|
||||
[Display(Name = "货品销售价格")]
|
||||
[SugarColumn(ColumnDescription = "货品销售价格")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal productPrice { get; set; }
|
||||
/// <summary>
|
||||
/// 代理商等级
|
||||
/// </summary>
|
||||
[Display(Name = "代理商等级")]
|
||||
[SugarColumn(ColumnDescription = "代理商等级")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 agentGradeId { get; set; }
|
||||
/// <summary>
|
||||
/// 代理价格
|
||||
/// </summary>
|
||||
[Display(Name = "代理价格")]
|
||||
[SugarColumn(ColumnDescription = "代理价格")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal agentGradePrice { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "更新时间")]
|
||||
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
[Display(Name = "是否删除")]
|
||||
[SugarColumn(ColumnDescription = "是否删除")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDel { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user