dongdingding
吴顺杰 2 years ago
parent a6280fad52
commit 33b9ad6525

@ -26,6 +26,12 @@ public class BPersonTags extends BaseEntity {
*
*/
private Long id;
/**
* id
*/
@ApiModelProperty(value = "用户标签id")
private Long tagsId;
/**
* id
*/

@ -5,6 +5,7 @@
<mapper namespace="com.ruoyi.zhiyuanzhe.mapper.ActivityUserMapper">
<resultMap type="BPersonTags" id="personTags">
<result property="id" column="id"/>
<result property="tagsId" column="tags_id"/>
<result property="uId" column="u_id"/>
<result property="ageRange" column="age_range"/>
<result property="housingRange" column="housing_range"/>
@ -109,7 +110,8 @@
where activity_id = #{activityId}
</delete>
<select id="findUserByStatusAndActivityId" resultMap="personTags">
select bau.id, bau.u_id, bpt.age_range, bpt.housing_range, bpt.education_range, bpt.interest_range,
select bau.id,bpt.id tags_id, bau.u_id, bpt.age_range, bpt.housing_range, bpt.education_range,
bpt.interest_range,
bpt.political_range, bpt.sex_range,
bpt.nationality_range, bpt.professional_range, bpt.industry_range, bpt.school_range, bpt.create_id,
bpt.create_by, bpt.create_time,

Loading…
Cancel
Save