diff --git a/ruoyi-admin/src/main/resources/templates/system/single/single.html b/ruoyi-admin/src/main/resources/templates/system/single/single.html index a7b86521..85f8d5b8 100644 --- a/ruoyi-admin/src/main/resources/templates/system/single/single.html +++ b/ruoyi-admin/src/main/resources/templates/system/single/single.html @@ -67,6 +67,14 @@ \ No newline at end of file diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbUserSingle.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbUserSingle.java index 6d575786..67304e3c 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbUserSingle.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/TbUserSingle.java @@ -141,6 +141,10 @@ public class TbUserSingle extends BaseEntity @ApiModelProperty(value = "择偶标准") private String choosingStandard; + @Excel(name = "状态") + @ApiModelProperty(value = "审核状态 0.待审核 1.审核通过 2.审核拒绝") + private Integer status; + @TableField(exist = false) @ApiModelProperty(value = "用户各图片附件信息") private List tbUserImgList; diff --git a/ruoyi-system/src/main/resources/mapper/system/TbUserSingleMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TbUserSingleMapper.xml index 41d35962..a374e805 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TbUserSingleMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TbUserSingleMapper.xml @@ -10,6 +10,7 @@ + @@ -33,7 +34,7 @@ - select id, user_id, nick_name, real_name, sex, birthday, height, weight, education, school, marriage, job, income, native_place, province_id, city_id, house_property, car_property, self_introduce, family_background, hobby, choosing_standard, create_time, update_time, remark from tb_user_single + select id, user_id, nick_name, real_name, sex, status, birthday, height, weight, education, school, marriage, job, income, native_place, province_id, city_id, house_property, car_property, self_introduce, family_background, hobby, choosing_standard, create_time, update_time, remark from tb_user_single