Files
housemove3/Api/Ewide.Application/Service/HouseSafety/HouseQuery/Dto/HouseQueryInput.cs
路 范 c03092bc0c .
2021-09-24 14:33:10 +08:00

22 lines
419 B
C#

using Ewide.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ewide.Application
{
public class HouseQueryInput: PageInputBase
{
}
public class HouseQueryDetailInput
{
[Required(ErrorMessage = "Id不能为空")]
public string Id { get; set; }
}
}