| | |
| | | /// <summary> |
| | | /// 计划订单表 |
| | | /// </summary> |
| | | [SqlCodeFirst] |
| | | //[SqlCodeFirst] |
| | | public class CoreCmsPlanOrder : BFBaseModel |
| | | { |
| | | |
| | |
| | | |
| | | public System.String orderId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 省Id |
| | | /// </summary> |
| | | [Display(Name = "省Id")] |
| | | |
| | | |
| | | |
| | | public System.Int32 shengId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 市Id |
| | | /// </summary> |
| | | [Display(Name = "市Id")] |
| | | |
| | | |
| | | |
| | | public System.Int32 shiId { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 市 |
| | | /// </summary> |
| | | [Display(Name = "市")] |
| | | |
| | | |
| | | |
| | | public System.String shi { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 区县Id |
| | | /// </summary> |
| | | [Display(Name = "区县Id")] |
| | | |
| | | |
| | | |
| | | public System.Int32 quxianId { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 区县名称 |
| | | /// </summary> |
| | | [Display(Name = "区县名称")] |
| | | |
| | | |
| | | |
| | | public System.String quxian { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 片区 |
| | | /// </summary> |
| | | [Display(Name = "片区")] |
| | | |
| | | |
| | | public System.String pianqu { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 调整订单金额 |
| | |
| | | |
| | | [StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")] |
| | | |
| | | |
| | | public System.String shipName { get; set; } |
| | | |
| | | |
| | |
| | | public System.String shipMobile { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 收货地址 |
| | | /// </summary> |
| | | [Display(Name = "收货地址")] |
| | | |
| | | [StringLength(maximumLength: 200, ErrorMessage = "{0}不能超过{1}字")] |
| | | |
| | | public System.String shouhuoAddress { get; set; } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string statusText { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 已花费金额 |
| | | /// </summary> |
| | | [Display(Name = "已花费金额")] |
| | | |
| | | [Required(ErrorMessage = "请输入{0}")] |
| | | |
| | | |
| | | |
| | | public System.Decimal huaFeiAmount { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 调整订单金额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal orderAmounts { get; set; } |
| | | /// <summary> |
| | | /// 计划订单金额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal oldOrderAmounts { get; set; } |
| | | /// <summary> |
| | | /// 可用余额 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | |
| | | |
| | | |
| | | public System.Decimal keYongAmounts { get; set; } |
| | | } |
| | | } |