username@email.com
2024-05-29 7a3a4f8012a72f80d8dd62064a76655c803da864
CoreCms.Net.Model/Entities/Cart/CoreCmsCart.cs
@@ -9,6 +9,7 @@
 ***********************************************************************/
using System.ComponentModel.DataAnnotations;
using Chuanyin.Attribute;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
@@ -16,6 +17,7 @@
    /// <summary>
    ///     购物车表
    /// </summary>
    [SqlCodeFirst]
    public class CoreCmsCart
    {
        /// <summary>
@@ -77,5 +79,11 @@
        public int objectId { get; set; }
        /// <summary>
        /// 是否定制
        /// </summary>
        [SugarColumn(IsNullable =true)]
        public  bool isCustomizable {  get; set; }=false;
    }
}