mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-21 23:37:16 +00:00
Export amazon settlement report fix
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace bnhtrade.Core.Model.SKU
|
||||
{
|
||||
class SKUInfo
|
||||
{
|
||||
public string SkuNumber { get; set; }
|
||||
public string AmazonFNSKU { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
}
|
||||
68
src/bnhtrade.Core/Model/SKU/Sku.cs
Normal file
68
src/bnhtrade.Core/Model/SKU/Sku.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace bnhtrade.Core.Model.Sku
|
||||
{
|
||||
public class Sku
|
||||
{
|
||||
private bool? isActive;
|
||||
public string ConditionModelPlaceholder
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string ProductModelPlaceholder
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string SkuNumber
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public Account.TaxCode TaxCode
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string AmazonFNSKU
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public bool IsActive
|
||||
{
|
||||
get { return (bool)isActive; }
|
||||
set { isActive = value; }
|
||||
}
|
||||
public bool IsSetConditionModelPlaceholder
|
||||
{
|
||||
get { return ConditionModelPlaceholder != null; }
|
||||
}
|
||||
public bool IsSetProductModelPlaceholder
|
||||
{
|
||||
get { return ProductModelPlaceholder != null; }
|
||||
}
|
||||
public bool IsSetSkuNumber
|
||||
{
|
||||
get { return SkuNumber != null; }
|
||||
}
|
||||
public bool IsSetTaxCode
|
||||
{
|
||||
get { return TaxCode != null; }
|
||||
}
|
||||
public bool IsSetAmazonFNSKU
|
||||
{
|
||||
get { return AmazonFNSKU != null; }
|
||||
}
|
||||
public bool IsSetIsActive
|
||||
{
|
||||
get { return isActive != null; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user