username@email.com
2024-09-09 cc170291673472d3cda8d7ea77f6bd3a3b5dbb83
CoreCms.Net.Model/Entities/Order/CoreCmsPlanOrder.cs
@@ -13,7 +13,7 @@
    /// <summary>
    /// 计划订单表
    /// </summary>
    [SqlCodeFirst]
    //[SqlCodeFirst]
    public class CoreCmsPlanOrder : BFBaseModel
    {
@@ -37,6 +37,65 @@
        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>
        /// 调整订单金额
@@ -94,7 +153,6 @@
        [StringLength(maximumLength: 50, ErrorMessage = "{0}不能超过{1}字")]
        public System.String shipName { get; set; }
@@ -110,10 +168,17 @@
        public System.String shipMobile { get; set; }
        /// <summary>
        /// 收货地址
        /// </summary>
        [Display(Name = "收货地址")]
        [StringLength(maximumLength: 200, ErrorMessage = "{0}不能超过{1}字")]
        public System.String shouhuoAddress { get; set; }
@@ -148,5 +213,43 @@
        /// </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; }
    }
}