| | |
| | | * 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.DateTime? updateTime { get; set; } |
| | | |
| | | |
| | |
| | | /// </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; } |
| | | |
| | | |
| | | |
| | | } |
| | | } |