update HouseCodeList
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
using Ewide.Core;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Application.Service.HouseCode.Dto
|
||||
{
|
||||
public class HouseCodeOutput : 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; }
|
||||
public int ProjectFullName { get; set; }
|
||||
public int ProjectName { get; set; }
|
||||
public int AreaName { get; set; }
|
||||
public int RoadName { get; set; }
|
||||
public int CommName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user