移动系统liao
2024-05-29 71e821ab5e6b3014fac9b691d6957bcc09704b70
CoreCms.Net.Model/Entities/Order/CoreCmsOrderItem.cs
@@ -7,6 +7,7 @@
 *         CreateTime: 2024-03-01 22:14:58
 *        Description: 暂无
***********************************************************************/ 
using Chuanyin.Attribute;
using SqlSugar;
using System.ComponentModel.DataAnnotations;
@@ -16,6 +17,7 @@
    /// 订单明细表
    /// </summary>
    [SugarTable("CoreCmsOrderItem",TableDescription = "订单明细表")]
    [SqlCodeFirst]
    public partial class CoreCmsOrderItem
    {
        /// <summary>
@@ -166,5 +168,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; }
    }
}