From e0b7fb7086bf29074e7f2aafece8428f5dff606e Mon Sep 17 00:00:00 2001 From: "kuang.yife" Date: Wed, 13 Dec 2023 14:46:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=AE=A1=E6=A0=B8=20+=20?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E5=8D=95=E8=BA=AB=E9=A1=B5=E9=9D=A2=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/system/single/single.html | 87 ++++++++++++++++--- .../com/ruoyi/system/domain/TbUserSingle.java | 4 + .../mapper/system/TbUserSingleMapper.xml | 4 +- 3 files changed, 80 insertions(+), 15 deletions(-) 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