5 changed files with 113 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||||
|
using SDKAdapter.OperationPlatform.Models; |
||||
|
|
||||
|
namespace BBWYB.Server.Model.Dto |
||||
|
{ |
||||
|
public class QueryBProductRequest: OP_QueryProductSkuRequest |
||||
|
{ |
||||
|
} |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
using SDKAdapter.OperationPlatform.Models; |
||||
|
|
||||
|
namespace BBWYB.Server.Model.Dto |
||||
|
{ |
||||
|
public class BProductResponse : OP_ProductResponse |
||||
|
{ |
||||
|
public IList<OP_ProductSkuResponse> SkuList { get; set; } |
||||
|
} |
||||
|
|
||||
|
public class BProductListResponse |
||||
|
{ |
||||
|
public int Count { get; set; } |
||||
|
|
||||
|
public IList<BProductResponse> Items { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue