53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.GoodsManager.GoodsServicesRels;
|
|
|
|
namespace ARW.Model.Dto.Business.GoodsManager.GoodsServicesRels
|
|
{
|
|
/// <summary>
|
|
/// 商品服务与承诺关系表输入对象
|
|
///
|
|
/// @author 黎文豪
|
|
/// @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 黎文豪
|
|
/// @date 2023-06-18
|
|
/// </summary>
|
|
public class GoodsServicesRelQueryDto : PagerInfo
|
|
{
|
|
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|