23 lines
392 B
23 lines
392 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace BBWYB.Client.Models
|
||
|
{
|
||
|
public class OrderProduct
|
||
|
{
|
||
|
public string ProductId { get; set; }
|
||
|
|
||
|
public string SkuId { get; set; }
|
||
|
|
||
|
public string SpectId { get; set; }
|
||
|
|
||
|
//数量
|
||
|
public int Quantity { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|