35 lines
754 B
C#
35 lines
754 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.ShopManager.Shops;
|
|
|
|
namespace ARW.Model.Dto.Api.ShopManager.Shops
|
|
{
|
|
|
|
/// <summary>
|
|
/// 店铺查询对象Api
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-12
|
|
/// </summary>
|
|
public class ShopQueryDtoApi : PagerInfo
|
|
{
|
|
public string ShopName { get; set; }
|
|
public int? ShopAuditStatus { get; set; }
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 店铺详情输入对象Api
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-12
|
|
/// </summary>
|
|
public class ShopDtoApi
|
|
{
|
|
[Required(ErrorMessage = "ShopGuid不能为空")]
|
|
public long ShopGuid { get; set; }
|
|
}
|
|
|
|
}
|