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