| | |
| | | /*********************************************************************** |
| | | * Project: CoreCms |
| | | * Project: baifenBinfa |
| | | * ProjectName: 百分兵法管理系统 |
| | | * Web: hhtp://chuanyin.com |
| | | * Web: http://chuanyin.com |
| | | * Author: |
| | | * Email: jianweie@163.com |
| | | * CreateTime: 2021-06-08 22:14:58 |
| | | * Email: 34161541@qq.com |
| | | * CreateTime: 2024-03-01 22:14:58 |
| | | * Description: 暂无 |
| | | ***********************************************************************/ |
| | | ***********************************************************************/ |
| | | using Chuanyin.Attribute; |
| | | using SqlSugar; |
| | | using System.ComponentModel.DataAnnotations; |
| | | |
| | |
| | | /// 订单明细表 |
| | | /// </summary> |
| | | [SugarTable("CoreCmsOrderItem",TableDescription = "订单明细表")] |
| | | [SqlCodeFirst] |
| | | public partial class CoreCmsOrderItem |
| | | { |
| | | /// <summary> |
| | |
| | | [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; } |
| | | } |
| | | } |