| | |
| | | using System; |
| | | using CoreCms.Net.Model.Entities; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | |
| | | 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> |
| | | |
| | |
| | | /// 是否参与营销(优惠券,满减,秒杀,团购) |
| | | /// </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; } |
| | | |
| | | } |
| | | } |