|
@ -1,4 +1,6 @@ |
|
|
namespace BBWYB.Server.Model.Dto |
|
|
using System.Xml.Linq; |
|
|
|
|
|
|
|
|
|
|
|
namespace BBWYB.Server.Model.Dto |
|
|
{ |
|
|
{ |
|
|
public class PurchaseSchemeProductResponse : Model.Db.PurchaseSchemeProduct |
|
|
public class PurchaseSchemeProductResponse : Model.Db.PurchaseSchemeProduct |
|
|
{ |
|
|
{ |
|
@ -22,6 +24,22 @@ |
|
|
/// 采购商的采购SKU数
|
|
|
/// 采购商的采购SKU数
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public int? PurchaserPurchasedSkuCount { get; set; } |
|
|
public int? PurchaserPurchasedSkuCount { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
public string PurchaserTag |
|
|
|
|
|
{ |
|
|
|
|
|
get |
|
|
|
|
|
{ |
|
|
|
|
|
if (string.IsNullOrEmpty(PurchaserName)) |
|
|
|
|
|
return string.Empty; |
|
|
|
|
|
if (PurchaserName.EndsWith("超级工厂")) |
|
|
|
|
|
return "超级工厂"; |
|
|
|
|
|
if (PurchaserName.EndsWith("实力工厂")) |
|
|
|
|
|
return "实力工厂"; |
|
|
|
|
|
if (PurchaserName.EndsWith("实力供应商")) |
|
|
|
|
|
return "实力供应商"; |
|
|
|
|
|
return string.Empty; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
#endregion
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|