22 lines
419 B
C#
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; }
|
|
}
|
|
}
|