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