移动系统liao
2024-06-13 80aa425c4ca51f7c0224a6245968cdd08940321b
CoreCms.Net.Model/Entities/Cart/CoreCmsCart.cs
@@ -1,14 +1,15 @@
/***********************************************************************
 *            Project: CoreCms
 *        ProjectName: 核心内容管理系统
 *                Web: https://www.corecms.net
 *             Author: 大灰灰
 *              Email: jianweie@163.com
 *            Project: baifenBinfa
 *        ProjectName: 百分兵法管理系统
 *                Web: http://chuanyin.com
 *             Author:
 *              Email:
 *         CreateTime: 2021/10/18 9:26:42
 *        Description: 暂无
 ***********************************************************************/
using System.ComponentModel.DataAnnotations;
using Chuanyin.Attribute;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
@@ -16,6 +17,7 @@
    /// <summary>
    ///     购物车表
    /// </summary>
    public class CoreCmsCart
    {
        /// <summary>
@@ -77,5 +79,11 @@
        public int objectId { get; set; }
        /// <summary>
        /// 是否定制
        /// </summary>
        [SugarColumn(IsNullable =true)]
        public  bool isCustomizable {  get; set; }=false;
    }
}