| | |
| | | * Description: 暂无 |
| | | ***********************************************************************/ |
| | | |
| | | using Chuanyin.Attribute; |
| | | using SqlSugar; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | |
| | | /// <summary> |
| | | /// 订单表 |
| | | /// </summary> |
| | | |
| | | 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; } |
| | | |
| | |
| | | |
| | | |
| | | 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; } |
| | | |
| | | |
| | |
| | | /// 计划订单id ALTER TABLE [CoreCmsOrder] ADD [planorderId] [nvarchar](255) NULL; |
| | | /// </summary> |
| | | [Display(Name = "计划订单id")] |
| | | |
| | | |
| | | [StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")] |
| | | [SugarColumn(IsNullable = true)] |