username@email.com
2024-05-29 7a3a4f8012a72f80d8dd62064a76655c803da864
CoreCms.Net.Model/Entities/Order/CoreCmsOrderItem.cs
@@ -6,7 +6,8 @@
 *              Email: 34161541@qq.com
 *         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; }
    }
}