49 lines
983 B
C#
49 lines
983 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ARW.Model.Dto.Business.GoodsManager.GoodsServicess.GoodsServicesRels
|
|
{
|
|
/// <summary>
|
|
/// 商品服务与承诺关系表输入对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public class GoodsServicesRelDto
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public long Guid { get; set; }
|
|
|
|
[Required(ErrorMessage = "店铺guid不能为空")]
|
|
public long ShopGuid { get; set; }
|
|
|
|
[Required(ErrorMessage = "商品guid不能为空")]
|
|
public long GoodsGuid { get; set; }
|
|
|
|
[Required(ErrorMessage = "服务与承诺guid不能为空")]
|
|
public long ServiceGuid { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 商品服务与承诺关系表查询对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public class GoodsServicesRelQueryDto : PagerInfo
|
|
{
|
|
public long GoodsGuid { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|