using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Request { /// /// 下单实体 /// public class OrderRequestDto { /// /// 下单商品id /// [Required(ErrorMessage = "ProductId必传")] public string ProductId { set; get; } = string.Empty; /// /// 下单商品id /// public int Count { set; get; } } }