username@email.com
2024-09-09 e8fd9aa8a76c638991e60544ccab53e2e5bd5b6a
CoreCms.Net.DTO/ComponentsDTO/GoodListDTO.cs
@@ -1,4 +1,6 @@
using System;
using CoreCms.Net.Model.Entities;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
@@ -120,6 +122,20 @@
        public System.Decimal price { get; set; }
        /// <summary>
        /// 经销商价格
        /// </summary>
        public System.Decimal distributionPrice { get; set; }
        /// <summary>
        /// 经销商购买提成
        /// </summary>
        public System.Decimal distributionCutMoney { get; set; }
        /// <summary>
        /// 普通商户购买提成
        /// </summary>
        public System.Decimal cutMoney { get; set; }
        /// <summary>
        /// 货品市场价
        /// </summary>
@@ -154,6 +170,29 @@
        /// 是否参与营销(优惠券,满减,秒杀,团购)
        /// </summary>
        public bool isInActivity { get; set; }
        /// <summary>
        /// areaCode
        /// </summary>
        public string areaCode { get; set; }
        /// <summary>
        /// 地址信息
        /// </summary>
        public string area { get; set; }
        /// <summary>
        /// 发布者cmsUserID
        /// </summary>
        public int? publisherId { get; set; }
        /// <summary>
        /// 审核状态
        /// </summary>
        public AuditStatusType? auditStatus { get; set; }
    }
}