| | |
| | | /*********************************************************************** |
| | | * 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 |
| | |
| | | /// <summary> |
| | | /// 购物车表 |
| | | /// </summary> |
| | | |
| | | public class CoreCmsCart |
| | | { |
| | | /// <summary> |
| | |
| | | |
| | | |
| | | public int objectId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否定制 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable =true)] |
| | | public bool isCustomizable { get; set; }=false; |
| | | } |
| | | } |