移动系统liao
2024-06-13 80aa425c4ca51f7c0224a6245968cdd08940321b
CoreCms.Net.Model/Entities/Order/CoreCmsOrderItem.cs
@@ -1,12 +1,13 @@
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 核心内容管理系统
 *                Web: https://www.corecms.net
 *             Author: 大灰灰
 *              Email: jianweie@163.com
 *         CreateTime: 2021-06-08 22:14:58
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统
 *                Web: http://chuanyin.com
 *             Author:
 *              Email: 34161541@qq.com
 *         CreateTime: 2024-03-01 22:14:58
 *        Description: 暂无
***********************************************************************/
***********************************************************************/
using Chuanyin.Attribute;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
@@ -15,7 +16,7 @@
    /// <summary>
    /// 订单明细表
    /// </summary>
    [SugarTable("CoreCmsOrderItem",TableDescription = "订单明细表")]
    [SugarTable("CoreCmsOrderItem",TableDescription = "订单明细表")]
    public partial class CoreCmsOrderItem
    {
        /// <summary>
@@ -166,5 +167,17 @@
        [Display(Name = "更新时间")]
        [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
        public System.DateTime? updateTime { get; set; }
        /// <summary>
        /// 定制费
        /// </summary>
        [SugarColumn(ColumnDescription = "定制费", IsNullable = true)]
        public decimal? CustomizableMoney { get; set; }
        /// <summary>
        /// 是否定制
        /// </summary>
        [SugarColumn(ColumnDescription = "是否定制", IsNullable = true)]
        public bool? IsCustomizable { get; set; }
    }
}