update 房屋编码保存

This commit is contained in:
2021-05-20 09:11:53 +08:00
parent 9bd6446a76
commit 4ddf8b7431
4 changed files with 15 additions and 19 deletions

View File

@@ -8,21 +8,21 @@ namespace Ewide.Application.Entity
[Comment("房屋编码表")]
public class BsHouseCode : Core.DEntityBase
{
[Comment("系统使用的区域编码")]
[Comment("系统中唯一的房屋编码,生成即不再变更")]
[MaxLength(50)]
[Required]
public string AreaCode { get; set; }
[Comment("项目ID")]
[MaxLength(36)]
[Required]
public string ProjectId { get; set; }
public string FullNumber { get; set; }
[Comment("编号")]
[MaxLength(3)]
[Required]
public string No { get; set; }
[Comment("项目ID")]
[MaxLength(36)]
[Required]
public string ProjectId { get; set; }
[Comment("片区ID")]
[MaxLength(36)]
[Required]