45 lines
788 B
C#
45 lines
788 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.Specs;
|
|
|
|
namespace ARW.Model.Dto.Business.GoodsManager.GoodsSpecs.Specs
|
|
{
|
|
/// <summary>
|
|
/// 商品规格组输入对象
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
public class SpecDto
|
|
{
|
|
|
|
public int SpecId { get; set; }
|
|
|
|
[Required(ErrorMessage = "规格值名称不能为空")]
|
|
public string SpecName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 商品规格组查询对象
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
public class SpecQueryDto : PagerInfo
|
|
{
|
|
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|