using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.GoodsManager.Goodss;
namespace ARW.Model.Dto.Api.GoodsManager.Goodss
{
///
/// 商品查询对象Api
///
/// @author lwh
/// @date 2023-07-09
///
public class GoodsQueryDtoApi : PagerInfo
{
public long? ShopGuid { get; set; }
///
/// 店铺经营类目
///
public long GoodsCategoryGuid { get; set; }
///
/// 店铺商品类目
///
public long ShopGoodsCategoryGuid { get; set; }
public string GoodsName { get; set; }
public string GoodsCoding { get; set; }
public int GoodsSort { get; set; }
public int GoodsSortType { get; set; }
public decimal MinPrice { get; set;}
public decimal MaxPrice { get; set;}
}
///
/// 商品详情输入对象Api
///
/// @author lwh
/// @date 2023-07-09
///
public class GoodsDtoApi
{
[Required(ErrorMessage = "商品Id不能为空")]
public long SpuId { get; set; }
}
}