【优化】数据库移除旧版自定义交易组件表,优化遗留的默认账号无一些数据的权限及linux下某些页面404的问题,完善部分表和字段未添加注释的问题。

This commit is contained in:
jianweie code
2023-09-02 15:13:22 +08:00
parent 8e8d61edfa
commit c5cd46314c
11 changed files with 55 additions and 1153 deletions

View File

@@ -1,104 +0,0 @@
/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2022/6/29 16:22:45
* Description: 暂无
***********************************************************************/
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace CoreCms.Net.Model.Entities
{
/// <summary>
/// 微信交易组件下单前置检查
/// </summary>
public partial class CoreCmsCheckBeforeAddOrder
{
/// <summary>
/// 构造函数
/// </summary>
public CoreCmsCheckBeforeAddOrder()
{
}
/// <summary>
/// 序列
/// </summary>
[Display(Name = "序列")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 id { get; set; }
/// <summary>
/// 订单编号
/// </summary>
[Display(Name = "订单编号")]
[Required(ErrorMessage = "请输入{0}")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String orderId { get; set; }
/// <summary>
/// 是否需要推单
/// </summary>
[Display(Name = "是否需要推单")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 requireOrder { get; set; }
/// <summary>
/// 商户订单类型
/// </summary>
[Display(Name = "商户订单类型")]
[Required(ErrorMessage = "请输入{0}")]
public System.Int32 requiredFundType { get; set; }
/// <summary>
/// 跟踪ID
/// </summary>
[Display(Name = "跟踪ID")]
[StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")]
public System.String traceId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Display(Name = "创建时间")]
[Required(ErrorMessage = "请输入{0}")]
public System.DateTime createTime { get; set; }
}
}