| | |
| | | /*********************************************************************** |
| | | * 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 11:51:30 |
| | | * Description: 暂无 |
| | | ***********************************************************************/ |
| | | |
| | | using Chuanyin.Attribute; |
| | | using SqlSugar; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | |
| | | /// <summary> |
| | | /// 订单表 |
| | | /// </summary> |
| | | [SqlCodeFirst] |
| | | public partial class CoreCmsOrder |
| | | { |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// 配送方式名称 |
| | | /// </summary> |
| | | [Display(Name = "配送方式名称")] |
| | | |
| | | [Display(Name = "配送方式名称")] |
| | | |
| | | [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")] |
| | | |
| | | [StringLength(maximumLength:50,ErrorMessage = "{0}不能超过{1}字")] |
| | | |
| | | public System.String logisticsName { get; set; } |
| | | |
| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 售后状态 |
| | | /// 收货状态 |
| | | /// </summary> |
| | | [Display(Name = "售后状态")] |
| | | |
| | |
| | | |
| | | |
| | | public System.String shipAddress { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 收货地址定位 |
| | | /// </summary> |
| | | [Display(Name = "收货地址定位")] |
| | | [SugarColumn(ColumnDescription = "收货地址定位",IsNullable = true)] |
| | | public System.String shipCoordinate { get; set; } |
| | | /// <summary> |
| | | /// 收货人姓名 |
| | | /// </summary> |
| | |
| | | /// 优惠券信息 |
| | | /// </summary> |
| | | [Display(Name = "优惠券信息")] |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | public System.String coupon { get; set; } |
| | | public System.String coupon { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | /// 更新时间 |
| | | /// </summary> |
| | | [Display(Name = "更新时间")] |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | public System.DateTime? updateTime { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 计划订单id ALTER TABLE [CoreCmsOrder] ADD [planorderId] [nvarchar](255) NULL; |
| | | /// </summary> |
| | | [Display(Name = "计划订单id")] |
| | | |
| | | [StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")] |
| | | [SugarColumn(IsNullable = true)] |
| | | |
| | | public System.String planorderId { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 发布者cmsUserID |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "发布者cmsUserID", IsNullable = true)] |
| | | public int? publisherId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 原订单ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "原订单ID", IsNullable = true)] |
| | | public string oldOderId { get; set; } |
| | | |
| | | |
| | | } |
| | | } |