mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-23 16:27:20 +08:00
添加项目文件。
This commit is contained in:
69
CoreCms.Net.Model/Entities/User/CoreCmsLoginLog.cs
Normal file
69
CoreCms.Net.Model/Entities/User/CoreCmsLoginLog.cs
Normal file
@@ -0,0 +1,69 @@
|
||||
/***********************************************************************
|
||||
* 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("CoreCmsLoginLog",TableDescription = "登录日志")]
|
||||
public partial class CoreCmsLoginLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 登录日志
|
||||
/// </summary>
|
||||
public CoreCmsLoginLog()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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)]
|
||||
public System.Int32? state { get; set; }
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
[Display(Name = "时间")]
|
||||
[SugarColumn(ColumnDescription = "时间", IsNullable = true)]
|
||||
public System.DateTime? logTime { get; set; }
|
||||
/// <summary>
|
||||
/// 地点城市
|
||||
/// </summary>
|
||||
[Display(Name = "地点城市")]
|
||||
[SugarColumn(ColumnDescription = "地点城市", IsNullable = true)]
|
||||
[StringLength(100, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String city { get; set; }
|
||||
/// <summary>
|
||||
/// ip地址
|
||||
/// </summary>
|
||||
[Display(Name = "ip地址")]
|
||||
[SugarColumn(ColumnDescription = "ip地址", IsNullable = true)]
|
||||
[StringLength(15, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String ip { get; set; }
|
||||
}
|
||||
}
|
||||
146
CoreCms.Net.Model/Entities/User/CoreCmsUser.cs
Normal file
146
CoreCms.Net.Model/Entities/User/CoreCmsUser.cs
Normal file
@@ -0,0 +1,146 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUser",TableDescription = "用户表")]
|
||||
public partial class CoreCmsUser
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户表
|
||||
/// </summary>
|
||||
public CoreCmsUser()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
[Display(Name = "用户ID")]
|
||||
[SugarColumn(ColumnDescription = "用户ID", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 用户名
|
||||
/// </summary>
|
||||
[Display(Name = "用户名")]
|
||||
[SugarColumn(ColumnDescription = "用户名", IsNullable = true)]
|
||||
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String userName { get; set; }
|
||||
/// <summary>
|
||||
/// 密码
|
||||
/// </summary>
|
||||
[Display(Name = "密码")]
|
||||
[SugarColumn(ColumnDescription = "密码", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String passWord { get; set; }
|
||||
/// <summary>
|
||||
/// 手机号
|
||||
/// </summary>
|
||||
[Display(Name = "手机号")]
|
||||
[SugarColumn(ColumnDescription = "手机号", IsNullable = true)]
|
||||
[StringLength(15, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String mobile { get; set; }
|
||||
/// <summary>
|
||||
/// 性别[1男2女3未知]
|
||||
/// </summary>
|
||||
[Display(Name = "性别[1男2女3未知]")]
|
||||
[SugarColumn(ColumnDescription = "性别[1男2女3未知]")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 sex { get; set; }
|
||||
/// <summary>
|
||||
/// 生日
|
||||
/// </summary>
|
||||
[Display(Name = "生日")]
|
||||
[SugarColumn(ColumnDescription = "生日", IsNullable = true)]
|
||||
public System.DateTime? birthday { get; set; }
|
||||
/// <summary>
|
||||
/// 头像
|
||||
/// </summary>
|
||||
[Display(Name = "头像")]
|
||||
[SugarColumn(ColumnDescription = "头像", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String avatarImage { get; set; }
|
||||
/// <summary>
|
||||
/// 昵称
|
||||
/// </summary>
|
||||
[Display(Name = "昵称")]
|
||||
[SugarColumn(ColumnDescription = "昵称", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String nickName { get; set; }
|
||||
/// <summary>
|
||||
/// 余额
|
||||
/// </summary>
|
||||
[Display(Name = "余额")]
|
||||
[SugarColumn(ColumnDescription = "余额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal balance { get; set; }
|
||||
/// <summary>
|
||||
/// 积分
|
||||
/// </summary>
|
||||
[Display(Name = "积分")]
|
||||
[SugarColumn(ColumnDescription = "积分")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 point { get; set; }
|
||||
/// <summary>
|
||||
/// 用户等级
|
||||
/// </summary>
|
||||
[Display(Name = "用户等级")]
|
||||
[SugarColumn(ColumnDescription = "用户等级")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 grade { 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? updataTime { get; set; }
|
||||
/// <summary>
|
||||
/// 状态[1正常2停用]
|
||||
/// </summary>
|
||||
[Display(Name = "状态[1正常2停用]")]
|
||||
[SugarColumn(ColumnDescription = "状态[1正常2停用]")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 status { get; set; }
|
||||
/// <summary>
|
||||
/// 推荐人
|
||||
/// </summary>
|
||||
[Display(Name = "推荐人")]
|
||||
[SugarColumn(ColumnDescription = "推荐人")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 parentId { get; set; }
|
||||
/// <summary>
|
||||
/// 关联三方账户
|
||||
/// </summary>
|
||||
[Display(Name = "关联三方账户")]
|
||||
[SugarColumn(ColumnDescription = "关联三方账户")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 userWx { get; set; }
|
||||
/// <summary>
|
||||
/// 删除标志 有数据就是删除
|
||||
/// </summary>
|
||||
[Display(Name = "删除标志 有数据就是删除")]
|
||||
[SugarColumn(ColumnDescription = "删除标志 有数据就是删除")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDelete { get; set; }
|
||||
}
|
||||
}
|
||||
85
CoreCms.Net.Model/Entities/User/CoreCmsUserBalance.cs
Normal file
85
CoreCms.Net.Model/Entities/User/CoreCmsUserBalance.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:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户余额表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserBalance",TableDescription = "用户余额表")]
|
||||
public partial class CoreCmsUserBalance
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户余额表
|
||||
/// </summary>
|
||||
public CoreCmsUserBalance()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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 = "类型")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 type { get; set; }
|
||||
/// <summary>
|
||||
/// 金额
|
||||
/// </summary>
|
||||
[Display(Name = "金额")]
|
||||
[SugarColumn(ColumnDescription = "金额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal money { get; set; }
|
||||
/// <summary>
|
||||
/// 余额
|
||||
/// </summary>
|
||||
[Display(Name = "余额")]
|
||||
[SugarColumn(ColumnDescription = "余额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal balance { get; set; }
|
||||
/// <summary>
|
||||
/// 资源id
|
||||
/// </summary>
|
||||
[Display(Name = "资源id")]
|
||||
[SugarColumn(ColumnDescription = "资源id", IsNullable = true)]
|
||||
[StringLength(20, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String sourceId { get; set; }
|
||||
/// <summary>
|
||||
/// 描述
|
||||
/// </summary>
|
||||
[Display(Name = "描述")]
|
||||
[SugarColumn(ColumnDescription = "描述", IsNullable = true)]
|
||||
[StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String memo { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
}
|
||||
}
|
||||
35
CoreCms.Net.Model/Entities/User/CoreCmsUserBalancePartial.cs
Normal file
35
CoreCms.Net.Model/Entities/User/CoreCmsUserBalancePartial.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户余额表
|
||||
/// </summary>
|
||||
public partial class CoreCmsUserBalance
|
||||
{
|
||||
/// <summary>
|
||||
/// 操作类型说明
|
||||
/// </summary>
|
||||
[Display(Name = "操作类型说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string typeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户昵称
|
||||
/// </summary>
|
||||
[Display(Name = "用户昵称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string userNickName { get; set; }
|
||||
}
|
||||
}
|
||||
112
CoreCms.Net.Model/Entities/User/CoreCmsUserBankCard.cs
Normal file
112
CoreCms.Net.Model/Entities/User/CoreCmsUserBankCard.cs
Normal file
@@ -0,0 +1,112 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 银行卡信息
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserBankCard",TableDescription = "银行卡信息")]
|
||||
public partial class CoreCmsUserBankCard
|
||||
{
|
||||
/// <summary>
|
||||
/// 银行卡信息
|
||||
/// </summary>
|
||||
public CoreCmsUserBankCard()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// id
|
||||
/// </summary>
|
||||
[Display(Name = "id")]
|
||||
[SugarColumn(ColumnDescription = "id", 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(60, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String bankName { get; set; }
|
||||
/// <summary>
|
||||
/// 银行缩写
|
||||
/// </summary>
|
||||
[Display(Name = "银行缩写")]
|
||||
[SugarColumn(ColumnDescription = "银行缩写", IsNullable = true)]
|
||||
[StringLength(12, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String bankCode { get; set; }
|
||||
/// <summary>
|
||||
/// 账号地区ID
|
||||
/// </summary>
|
||||
[Display(Name = "账号地区ID")]
|
||||
[SugarColumn(ColumnDescription = "账号地区ID")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 bankAreaId { get; set; }
|
||||
/// <summary>
|
||||
/// 开户行
|
||||
/// </summary>
|
||||
[Display(Name = "开户行")]
|
||||
[SugarColumn(ColumnDescription = "开户行", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String accountBank { get; set; }
|
||||
/// <summary>
|
||||
/// 账户名
|
||||
/// </summary>
|
||||
[Display(Name = "账户名")]
|
||||
[SugarColumn(ColumnDescription = "账户名", IsNullable = true)]
|
||||
[StringLength(60, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String accountName { get; set; }
|
||||
/// <summary>
|
||||
/// 卡号
|
||||
/// </summary>
|
||||
[Display(Name = "卡号")]
|
||||
[SugarColumn(ColumnDescription = "卡号", IsNullable = true)]
|
||||
[StringLength(30, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String cardNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 银行卡类型
|
||||
/// </summary>
|
||||
[Display(Name = "银行卡类型")]
|
||||
[SugarColumn(ColumnDescription = "银行卡类型")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 cardType { 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.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 删除时间
|
||||
/// </summary>
|
||||
[Display(Name = "删除时间")]
|
||||
[SugarColumn(ColumnDescription = "删除时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户银行卡
|
||||
/// </summary>
|
||||
public partial class CoreCmsUserBankCard
|
||||
{
|
||||
/// <summary>
|
||||
/// 区域名称
|
||||
/// </summary>
|
||||
[Display(Name = "区域名称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string bankAreaName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 银行卡类型
|
||||
/// </summary>
|
||||
[Display(Name = "银行卡类型")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string cardTypeName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 银行图片
|
||||
/// </summary>
|
||||
[Display(Name = "银行图片")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string bankLogo { get; set; }
|
||||
}
|
||||
}
|
||||
51
CoreCms.Net.Model/Entities/User/CoreCmsUserGrade.cs
Normal file
51
CoreCms.Net.Model/Entities/User/CoreCmsUserGrade.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
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)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
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; }
|
||||
/// <summary>
|
||||
/// 是否默认
|
||||
/// </summary>
|
||||
[Display(Name = "是否默认")]
|
||||
[SugarColumn(ColumnDescription = "是否默认")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDefault { get; set; }
|
||||
}
|
||||
}
|
||||
69
CoreCms.Net.Model/Entities/User/CoreCmsUserLog.cs
Normal file
69
CoreCms.Net.Model/Entities/User/CoreCmsUserLog.cs
Normal file
@@ -0,0 +1,69 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户日志
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserLog",TableDescription = "用户日志")]
|
||||
public partial class CoreCmsUserLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户日志
|
||||
/// </summary>
|
||||
public CoreCmsUserLog()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// id
|
||||
/// </summary>
|
||||
[Display(Name = "id")]
|
||||
[SugarColumn(ColumnDescription = "id", 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)]
|
||||
public System.Int32? state { get; set; }
|
||||
/// <summary>
|
||||
/// 参数
|
||||
/// </summary>
|
||||
[Display(Name = "参数")]
|
||||
[SugarColumn(ColumnDescription = "参数", IsNullable = true)]
|
||||
[StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String parameters { get; set; }
|
||||
/// <summary>
|
||||
/// ip地址
|
||||
/// </summary>
|
||||
[Display(Name = "ip地址")]
|
||||
[SugarColumn(ColumnDescription = "ip地址", IsNullable = true)]
|
||||
[StringLength(15, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String ip { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
|
||||
public System.DateTime? createTime { get; set; }
|
||||
}
|
||||
}
|
||||
38
CoreCms.Net.Model/Entities/User/CoreCmsUserPartial.cs
Normal file
38
CoreCms.Net.Model/Entities/User/CoreCmsUserPartial.cs
Normal file
@@ -0,0 +1,38 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户表
|
||||
/// </summary>
|
||||
public partial class CoreCmsUser
|
||||
{
|
||||
/// <summary>
|
||||
/// 来源类型
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下级用户数量
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int childNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 父级名称
|
||||
/// </summary>
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string parentNickName { get; set; }
|
||||
}
|
||||
}
|
||||
78
CoreCms.Net.Model/Entities/User/CoreCmsUserPointLog.cs
Normal file
78
CoreCms.Net.Model/Entities/User/CoreCmsUserPointLog.cs
Normal file
@@ -0,0 +1,78 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户积分记录表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserPointLog",TableDescription = "用户积分记录表")]
|
||||
public partial class CoreCmsUserPointLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户积分记录表
|
||||
/// </summary>
|
||||
public CoreCmsUserPointLog()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
[Display(Name = "ID")]
|
||||
[SugarColumn(ColumnDescription = "ID", 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 = "类型")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 type { get; set; }
|
||||
/// <summary>
|
||||
/// 积分数量
|
||||
/// </summary>
|
||||
[Display(Name = "积分数量")]
|
||||
[SugarColumn(ColumnDescription = "积分数量")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 num { get; set; }
|
||||
/// <summary>
|
||||
/// 积分余额
|
||||
/// </summary>
|
||||
[Display(Name = "积分余额")]
|
||||
[SugarColumn(ColumnDescription = "积分余额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 balance { get; set; }
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[Display(Name = "备注")]
|
||||
[SugarColumn(ColumnDescription = "备注", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String remarks { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户积分
|
||||
/// </summary>
|
||||
public partial class CoreCmsUserPointLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 类型说明
|
||||
/// </summary>
|
||||
[Display(Name = "类型说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string typeName { get; set; }
|
||||
}
|
||||
}
|
||||
90
CoreCms.Net.Model/Entities/User/CoreCmsUserShip.cs
Normal file
90
CoreCms.Net.Model/Entities/User/CoreCmsUserShip.cs
Normal file
@@ -0,0 +1,90 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户地址表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserShip",TableDescription = "用户地址表")]
|
||||
public partial class CoreCmsUserShip
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户地址表
|
||||
/// </summary>
|
||||
public CoreCmsUserShip()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 序列
|
||||
/// </summary>
|
||||
[Display(Name = "序列")]
|
||||
[SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 id { get; set; }
|
||||
/// <summary>
|
||||
/// 用户id 关联user.id
|
||||
/// </summary>
|
||||
[Display(Name = "用户id 关联user.id")]
|
||||
[SugarColumn(ColumnDescription = "用户id 关联user.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 areaId { get; set; }
|
||||
/// <summary>
|
||||
/// 收货详细地址
|
||||
/// </summary>
|
||||
[Display(Name = "收货详细地址")]
|
||||
[SugarColumn(ColumnDescription = "收货详细地址", IsNullable = true)]
|
||||
[StringLength(200, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String address { 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 = "收货电话", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String mobile { get; set; }
|
||||
/// <summary>
|
||||
/// 是否默认
|
||||
/// </summary>
|
||||
[Display(Name = "是否默认")]
|
||||
[SugarColumn(ColumnDescription = "是否默认")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDefault { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
|
||||
public System.DateTime? createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "更新时间")]
|
||||
[SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
}
|
||||
}
|
||||
28
CoreCms.Net.Model/Entities/User/CoreCmsUserShipPartial.cs
Normal file
28
CoreCms.Net.Model/Entities/User/CoreCmsUserShipPartial.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户地址表
|
||||
/// </summary>
|
||||
public partial class CoreCmsUserShip
|
||||
{
|
||||
/// <summary>
|
||||
/// 区域名称
|
||||
/// </summary>
|
||||
[Display(Name = "区域名称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string areaName { get; set; }
|
||||
}
|
||||
}
|
||||
118
CoreCms.Net.Model/Entities/User/CoreCmsUserTocash.cs
Normal file
118
CoreCms.Net.Model/Entities/User/CoreCmsUserTocash.cs
Normal file
@@ -0,0 +1,118 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户提现记录表
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserTocash",TableDescription = "用户提现记录表")]
|
||||
public partial class CoreCmsUserTocash
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户提现记录表
|
||||
/// </summary>
|
||||
public CoreCmsUserTocash()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// id
|
||||
/// </summary>
|
||||
[Display(Name = "id")]
|
||||
[SugarColumn(ColumnDescription = "id", 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 = "提现金额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal money { get; set; }
|
||||
/// <summary>
|
||||
/// 银行名称
|
||||
/// </summary>
|
||||
[Display(Name = "银行名称")]
|
||||
[SugarColumn(ColumnDescription = "银行名称", IsNullable = true)]
|
||||
[StringLength(60, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String bankName { get; set; }
|
||||
/// <summary>
|
||||
/// 银行缩写
|
||||
/// </summary>
|
||||
[Display(Name = "银行缩写")]
|
||||
[SugarColumn(ColumnDescription = "银行缩写", IsNullable = true)]
|
||||
[StringLength(12, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String bankCode { get; set; }
|
||||
/// <summary>
|
||||
/// 账号地区ID
|
||||
/// </summary>
|
||||
[Display(Name = "账号地区ID")]
|
||||
[SugarColumn(ColumnDescription = "账号地区ID", IsNullable = true)]
|
||||
public System.Int32? bankAreaId { get; set; }
|
||||
/// <summary>
|
||||
/// 开户行
|
||||
/// </summary>
|
||||
[Display(Name = "开户行")]
|
||||
[SugarColumn(ColumnDescription = "开户行", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String accountBank { get; set; }
|
||||
/// <summary>
|
||||
/// 账户名
|
||||
/// </summary>
|
||||
[Display(Name = "账户名")]
|
||||
[SugarColumn(ColumnDescription = "账户名", IsNullable = true)]
|
||||
[StringLength(60, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String accountName { get; set; }
|
||||
/// <summary>
|
||||
/// 卡号
|
||||
/// </summary>
|
||||
[Display(Name = "卡号")]
|
||||
[SugarColumn(ColumnDescription = "卡号", IsNullable = true)]
|
||||
[StringLength(30, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String cardNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 提现服务费
|
||||
/// </summary>
|
||||
[Display(Name = "提现服务费")]
|
||||
[SugarColumn(ColumnDescription = "提现服务费")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Decimal withdrawals { get; set; }
|
||||
/// <summary>
|
||||
/// 提现状态
|
||||
/// </summary>
|
||||
[Display(Name = "提现状态")]
|
||||
[SugarColumn(ColumnDescription = "提现状态")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 status { 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; }
|
||||
}
|
||||
}
|
||||
36
CoreCms.Net.Model/Entities/User/CoreCmsUserTocashPartial.cs
Normal file
36
CoreCms.Net.Model/Entities/User/CoreCmsUserTocashPartial.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户提现表
|
||||
/// </summary>
|
||||
public partial class CoreCmsUserTocash
|
||||
{
|
||||
/// <summary>
|
||||
/// 状态说明
|
||||
/// </summary>
|
||||
[Display(Name = "状态说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string statusName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 用户昵称
|
||||
/// </summary>
|
||||
[Display(Name = "用户昵称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string userNickName { get; set; }
|
||||
}
|
||||
}
|
||||
58
CoreCms.Net.Model/Entities/User/CoreCmsUserToken.cs
Normal file
58
CoreCms.Net.Model/Entities/User/CoreCmsUserToken.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021-06-08 22:14:59
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
using SqlSugar;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户token
|
||||
/// </summary>
|
||||
[SugarTable("CoreCmsUserToken",TableDescription = "用户token")]
|
||||
public partial class CoreCmsUserToken
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户token
|
||||
/// </summary>
|
||||
public CoreCmsUserToken()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Display(Name = "")]
|
||||
[SugarColumn(ColumnDescription = "", IsPrimaryKey = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(32, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String token { get; set; }
|
||||
/// <summary>
|
||||
/// 用户序列
|
||||
/// </summary>
|
||||
[Display(Name = "用户序列")]
|
||||
[SugarColumn(ColumnDescription = "用户序列")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 userId { get; set; }
|
||||
/// <summary>
|
||||
/// 平台类型,1就是默认,2就是微信小程序
|
||||
/// </summary>
|
||||
[Display(Name = "平台类型,1就是默认,2就是微信小程序")]
|
||||
[SugarColumn(ColumnDescription = "平台类型,1就是默认,2就是微信小程序")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int16 platform { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user