using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Central.Control.WebApi.Models.Request
{
///
///
///
public class DeviceProductRequestDto
{
///
/// 商品id
///
public string ProductId { set; get; } = string.Empty;
///
/// 售卖价
///
public decimal Price { set; get; }
///
/// 库存
///
public int Stock { set; get; }
}
}