update 完成选房

This commit is contained in:
2021-05-30 20:28:09 +08:00
parent 0f44438d78
commit ccd914fb81
30 changed files with 650 additions and 43 deletions

View File

@@ -2,7 +2,7 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Ewide.Application.Entity
namespace Ewide.Application
{
[Table("bs_house_code")]
[Comment("房屋编码表")]

View File

@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ewide.Application.Entity
namespace Ewide.Application
{
[Table("bs_house_member_relation")]
[Comment("房屋与人员关联表")]
@@ -21,6 +21,6 @@ namespace Ewide.Application.Entity
[Comment("bs_house_code主键Id")]
[MaxLength(36)]
[Required]
public string CodeId { get; set; }
public string HouseCodeId { get; set; }
}
}