update HouseCodeList

This commit is contained in:
2021-05-20 13:55:45 +08:00
parent 16b3688edb
commit 6cbb663e97
5 changed files with 65 additions and 25 deletions

View File

@@ -41,9 +41,18 @@ namespace Ewide.Application.Service.HouseCode.Dto
public string Id { get; set; }
}
public class DeleteProjectInput
public class DeleteHouseCodeInput
{
[Required(ErrorMessage = "房屋编码ID不可为空")]
public string Id { get; set; }
}
public class QueryHouseCodeInput : PageInputBase
{
public string HouseCode { get; set; }
public string Address { get; set; }
public string ProjectId { get; set; }
public string ZoonId { get; set; }
public int Type { get; set; }
}
}