mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-23 16:27:20 +08:00
添加项目文件。
This commit is contained in:
163
CoreCms.Net.Model/Entities/Service/CoreCmsServices.cs
Normal file
163
CoreCms.Net.Model/Entities/Service/CoreCmsServices.cs
Normal file
@@ -0,0 +1,163 @@
|
||||
/***********************************************************************
|
||||
* 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("CoreCmsServices",TableDescription = "服务项目表")]
|
||||
public partial class CoreCmsServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务项目表
|
||||
/// </summary>
|
||||
public CoreCmsServices()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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}")]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String title { get; set; }
|
||||
/// <summary>
|
||||
/// 项目缩略图
|
||||
/// </summary>
|
||||
[Display(Name = "项目缩略图")]
|
||||
[SugarColumn(ColumnDescription = "项目缩略图")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String thumbnail { get; set; }
|
||||
/// <summary>
|
||||
/// 项目概述
|
||||
/// </summary>
|
||||
[Display(Name = "项目概述")]
|
||||
[SugarColumn(ColumnDescription = "项目概述", IsNullable = true)]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String description { get; set; }
|
||||
/// <summary>
|
||||
/// 项目详细说明
|
||||
/// </summary>
|
||||
[Display(Name = "项目详细说明")]
|
||||
[SugarColumn(ColumnDescription = "项目详细说明")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.String contentBody { get; set; }
|
||||
/// <summary>
|
||||
/// 允许购买会员级别
|
||||
/// </summary>
|
||||
[Display(Name = "允许购买会员级别")]
|
||||
[SugarColumn(ColumnDescription = "允许购买会员级别")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String allowedMembership { get; set; }
|
||||
/// <summary>
|
||||
/// 可消费门店
|
||||
/// </summary>
|
||||
[Display(Name = "可消费门店")]
|
||||
[SugarColumn(ColumnDescription = "可消费门店")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(255, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String consumableStore { 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.Int32 maxBuyNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 项目可销售数量
|
||||
/// </summary>
|
||||
[Display(Name = "项目可销售数量")]
|
||||
[SugarColumn(ColumnDescription = "项目可销售数量")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 amount { get; set; }
|
||||
/// <summary>
|
||||
/// 项目开始时间
|
||||
/// </summary>
|
||||
[Display(Name = "项目开始时间")]
|
||||
[SugarColumn(ColumnDescription = "项目开始时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime startTime { get; set; }
|
||||
/// <summary>
|
||||
/// 项目截止时间
|
||||
/// </summary>
|
||||
[Display(Name = "项目截止时间")]
|
||||
[SugarColumn(ColumnDescription = "项目截止时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime endTime { get; set; }
|
||||
/// <summary>
|
||||
/// 核销有效期类型
|
||||
/// </summary>
|
||||
[Display(Name = "核销有效期类型")]
|
||||
[SugarColumn(ColumnDescription = "核销有效期类型")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 validityType { get; set; }
|
||||
/// <summary>
|
||||
/// 核销开始时间
|
||||
/// </summary>
|
||||
[Display(Name = "核销开始时间")]
|
||||
[SugarColumn(ColumnDescription = "核销开始时间", IsNullable = true)]
|
||||
public System.DateTime? validityStartTime { get; set; }
|
||||
/// <summary>
|
||||
/// 核销结束时间
|
||||
/// </summary>
|
||||
[Display(Name = "核销结束时间")]
|
||||
[SugarColumn(ColumnDescription = "核销结束时间", IsNullable = true)]
|
||||
public System.DateTime? validityEndTime { get; set; }
|
||||
/// <summary>
|
||||
/// 核销服务券数量
|
||||
/// </summary>
|
||||
[Display(Name = "核销服务券数量")]
|
||||
[SugarColumn(ColumnDescription = "核销服务券数量")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 ticketNumber { 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.Decimal money { get; set; }
|
||||
}
|
||||
}
|
||||
43
CoreCms.Net.Model/Entities/Service/CoreCmsServicesPartial.cs
Normal file
43
CoreCms.Net.Model/Entities/Service/CoreCmsServicesPartial.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/1/31 21:45:10
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using SqlSugar;
|
||||
|
||||
namespace CoreCms.Net.Model.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务项目表
|
||||
/// </summary>
|
||||
public partial class CoreCmsServices
|
||||
{
|
||||
/// <summary>
|
||||
/// 倒计时时间戳
|
||||
/// </summary>
|
||||
[Display(Name = "倒计时时间戳")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public int timestamp { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 允许购买用户等级
|
||||
/// </summary>
|
||||
[Display(Name = "允许购买用户等级")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public List<string> allowedMemberships { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 核销门店
|
||||
/// </summary>
|
||||
[Display(Name = "核销门店")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public List<string> consumableStores { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
/***********************************************************************
|
||||
* 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("CoreCmsUserServicesOrder",TableDescription = "服务购买表")]
|
||||
public partial class CoreCmsUserServicesOrder
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务购买表
|
||||
/// </summary>
|
||||
public CoreCmsUserServicesOrder()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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}")]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String serviceOrderId { get; set; }
|
||||
/// <summary>
|
||||
/// 关联用户
|
||||
/// </summary>
|
||||
[Display(Name = "关联用户")]
|
||||
[SugarColumn(ColumnDescription = "关联用户")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 userId { get; set; }
|
||||
/// <summary>
|
||||
/// 关联服务
|
||||
/// </summary>
|
||||
[Display(Name = "关联服务")]
|
||||
[SugarColumn(ColumnDescription = "关联服务")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 servicesId { get; set; }
|
||||
/// <summary>
|
||||
/// 是否支付
|
||||
/// </summary>
|
||||
[Display(Name = "是否支付")]
|
||||
[SugarColumn(ColumnDescription = "是否支付")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isPay { get; set; }
|
||||
/// <summary>
|
||||
/// 支付时间
|
||||
/// </summary>
|
||||
[Display(Name = "支付时间")]
|
||||
[SugarColumn(ColumnDescription = "支付时间", IsNullable = true)]
|
||||
public System.DateTime? payTime { get; set; }
|
||||
/// <summary>
|
||||
/// 支付单号
|
||||
/// </summary>
|
||||
[Display(Name = "支付单号")]
|
||||
[SugarColumn(ColumnDescription = "支付单号", IsNullable = true)]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String paymentId { 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? servicesEndTime { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -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 CoreCmsUserServicesOrder
|
||||
{
|
||||
/// <summary>
|
||||
/// 关联服务
|
||||
/// </summary>
|
||||
[Display(Name = "关联服务")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public CoreCmsServices service { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 状态说明
|
||||
/// </summary>
|
||||
[Display(Name = "状态说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string statusStr { get; set; }
|
||||
}
|
||||
}
|
||||
119
CoreCms.Net.Model/Entities/Service/CoreCmsUserServicesTicket.cs
Normal file
119
CoreCms.Net.Model/Entities/Service/CoreCmsUserServicesTicket.cs
Normal file
@@ -0,0 +1,119 @@
|
||||
/***********************************************************************
|
||||
* 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("CoreCmsUserServicesTicket",TableDescription = "服务消费券")]
|
||||
public partial class CoreCmsUserServicesTicket
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务消费券
|
||||
/// </summary>
|
||||
public CoreCmsUserServicesTicket()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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}")]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String serviceOrderId { get; set; }
|
||||
/// <summary>
|
||||
/// 安全码
|
||||
/// </summary>
|
||||
[Display(Name = "安全码")]
|
||||
[SugarColumn(ColumnDescription = "安全码")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Guid securityCode { get; set; }
|
||||
/// <summary>
|
||||
/// 兑换码
|
||||
/// </summary>
|
||||
[Display(Name = "兑换码")]
|
||||
[SugarColumn(ColumnDescription = "兑换码")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String redeemCode { get; set; }
|
||||
/// <summary>
|
||||
/// 关联服务项目id
|
||||
/// </summary>
|
||||
[Display(Name = "关联服务项目id")]
|
||||
[SugarColumn(ColumnDescription = "关联服务项目id")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 serviceId { 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 status { get; set; }
|
||||
/// <summary>
|
||||
/// 核销有效期类型
|
||||
/// </summary>
|
||||
[Display(Name = "核销有效期类型")]
|
||||
[SugarColumn(ColumnDescription = "核销有效期类型")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 validityType { get; set; }
|
||||
/// <summary>
|
||||
/// 核销开始时间
|
||||
/// </summary>
|
||||
[Display(Name = "核销开始时间")]
|
||||
[SugarColumn(ColumnDescription = "核销开始时间", IsNullable = true)]
|
||||
public System.DateTime? validityStartTime { get; set; }
|
||||
/// <summary>
|
||||
/// 核销结束时间
|
||||
/// </summary>
|
||||
[Display(Name = "核销结束时间")]
|
||||
[SugarColumn(ColumnDescription = "核销结束时间", IsNullable = true)]
|
||||
public System.DateTime? validityEndTime { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[SugarColumn(ColumnDescription = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime createTime { get; set; }
|
||||
/// <summary>
|
||||
/// 是否核销
|
||||
/// </summary>
|
||||
[Display(Name = "是否核销")]
|
||||
[SugarColumn(ColumnDescription = "是否核销")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isVerification { get; set; }
|
||||
/// <summary>
|
||||
/// 核销时间
|
||||
/// </summary>
|
||||
[Display(Name = "核销时间")]
|
||||
[SugarColumn(ColumnDescription = "核销时间", IsNullable = true)]
|
||||
public System.DateTime? verificationTime { 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 CoreCmsUserServicesTicket
|
||||
{
|
||||
/// <summary>
|
||||
/// 状态说明
|
||||
/// </summary>
|
||||
[Display(Name = "状态说明")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string statusStr { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,86 @@
|
||||
/***********************************************************************
|
||||
* 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("CoreCmsUserServicesTicketVerificationLog",TableDescription = "服务券核验日志")]
|
||||
public partial class CoreCmsUserServicesTicketVerificationLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务券核验日志
|
||||
/// </summary>
|
||||
public CoreCmsUserServicesTicketVerificationLog()
|
||||
{
|
||||
}
|
||||
|
||||
/// <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 storeId { get; set; }
|
||||
/// <summary>
|
||||
/// 关联服务
|
||||
/// </summary>
|
||||
[Display(Name = "关联服务")]
|
||||
[SugarColumn(ColumnDescription = "关联服务")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 serviceId { get; set; }
|
||||
/// <summary>
|
||||
/// 核验人
|
||||
/// </summary>
|
||||
[Display(Name = "核验人")]
|
||||
[SugarColumn(ColumnDescription = "核验人")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 verificationUserId { get; set; }
|
||||
/// <summary>
|
||||
/// 服务券序列
|
||||
/// </summary>
|
||||
[Display(Name = "服务券序列")]
|
||||
[SugarColumn(ColumnDescription = "服务券序列")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Int32 ticketId { get; set; }
|
||||
/// <summary>
|
||||
/// 核验码
|
||||
/// </summary>
|
||||
[Display(Name = "核验码")]
|
||||
[SugarColumn(ColumnDescription = "核验码")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
[StringLength(50, ErrorMessage = "【{0}】不能超过{1}字符长度")]
|
||||
public System.String ticketRedeemCode { get; set; }
|
||||
/// <summary>
|
||||
/// 核验时间
|
||||
/// </summary>
|
||||
[Display(Name = "核验时间")]
|
||||
[SugarColumn(ColumnDescription = "核验时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.DateTime verificationTime { get; set; }
|
||||
/// <summary>
|
||||
/// 是否删除
|
||||
/// </summary>
|
||||
[Display(Name = "是否删除")]
|
||||
[SugarColumn(ColumnDescription = "是否删除")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean isDel { 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 CoreCmsUserServicesTicketVerificationLog
|
||||
{
|
||||
/// <summary>
|
||||
/// ticket
|
||||
/// </summary>
|
||||
[Display(Name = "ticket")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public CoreCmsUserServicesTicket ticket { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// service
|
||||
/// </summary>
|
||||
[Display(Name = "service")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public CoreCmsServices service { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// order
|
||||
/// </summary>
|
||||
[Display(Name = "order")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public CoreCmsUserServicesOrder order { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user