linwe
2023-12-01 5d5cd3ad979a0b85ab8c7034dcad1663fdcf71be
src/main/java/org/springblade/modules/house/entity/HouseholdEntity.java
@@ -77,15 +77,15 @@
   @ApiModelProperty(value = "绑定用户名称")
   private String associatedUserName;
   /**
    * 角色  0: 业主 1:出租户  2:空挂户 3:其他
    * 角色
    */
   @ApiModelProperty(value = "角色  0: 业主 1:出租户  2:空挂户 3:其他")
   @ApiModelProperty(value = "角色")
   private Integer roleType;
   /**
    * 与角色关系
    */
   @ApiModelProperty(value = "与角色关系")
   private String relationship;
   private Integer relationship;
   /**
    * 是否主要联系人 1:是  0:否
@@ -128,35 +128,35 @@
   @ApiModelProperty(value = "护照")
   private String passport;
   /**
    * 民族(WGCCP_ETHNICITY)
    * 民族
    */
   @ApiModelProperty(value = "民族(WGCCP_ETHNICITY)")
   private String ethnicity;
   @ApiModelProperty(value = "民族")
   private Integer ethnicity;
   /**
    * 学历(WGCCP_EDUCATION)
    * 学历
    */
   @ApiModelProperty(value = "学历(WGCCP_EDUCATION)")
   private String education;
   @ApiModelProperty(value = "学历")
   private Integer education;
   /**
    * 户籍登记地
    */
   @ApiModelProperty(value = "户籍登记地")
   private String hukouRegistration;
   /**
    * 工作状态(WGCCP_WORK_STATUS)
    * 工作状态
    */
   @ApiModelProperty(value = "工作状态(WGCCP_WORK_STATUS)")
   private String workStatus;
   @ApiModelProperty(value = "工作状态")
   private Integer workStatus;
   /**
    * 工作单位
    */
   @ApiModelProperty(value = "工作单位")
   private String employer;
   /**
    * 婚姻状态(WGCCP_MARITAL_STATUS)
    * 婚姻状态
    */
   @ApiModelProperty(value = "婚姻状态(WGCCP_MARITAL_STATUS)")
   private String maritalStatus;
   @ApiModelProperty(value = "婚姻状态")
   private Integer maritalStatus;
   /**
    * 车牌号
    */
@@ -227,4 +227,10 @@
   @ApiModelProperty("是否已删除 0:否  1:是")
   private Integer isDeleted;
   /**
    * 是否审核
    */
   @ApiModelProperty("是否审核 0:否:1 是")
   private Integer confirmFlag;
}