Browse Source

【居民端- 初心互助-初心榜 】-【添加爱心积分】-(魏凯)-2020/07/01

feature/dangjian
weikai 5 years ago
parent
commit
cdd66c6848
  1. 7
      esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/java/com/elink/esua/epdc/modules/volunteer/entity/VolunteerRankEntity.java
  2. 6
      esua-epdc/epdc-module/epdc-user/epdc-user-client/src/main/java/com/elink/esua/epdc/dto/epdc/result/EpdcGetVolunteerRankDTO.java
  3. 3
      esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/resources/mapper/VolunteerInfoDao.xml

7
esua-epdc/epdc-module/epdc-heart/epdc-heart-server/src/main/java/com/elink/esua/epdc/modules/volunteer/entity/VolunteerRankEntity.java

@ -18,7 +18,6 @@
package com.elink.esua.epdc.modules.volunteer.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.elink.esua.epdc.commons.mybatis.entity.BaseEpdcEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@ -88,5 +87,9 @@ public class VolunteerRankEntity extends BaseEpdcEntity {
* 是否显示(0-不显示1-显示)
*/
private String showFlag;
/**
* 新增 志愿者积分
*/
private String integral;
}
}

6
esua-epdc/epdc-module/epdc-user/epdc-user-client/src/main/java/com/elink/esua/epdc/dto/epdc/result/EpdcGetVolunteerRankDTO.java

@ -118,5 +118,9 @@ public class EpdcGetVolunteerRankDTO implements Serializable {
* 删除标志
*/
private String delFlag;
/**
* 新增 志愿者积分
*/
private String integral;
}
}

3
esua-epdc/epdc-module/epdc-user/epdc-user-server/src/main/resources/mapper/VolunteerInfoDao.xml

@ -180,7 +180,8 @@
eu.NICKNAME,
eu.PARTY_FLAG,
vi.KINDNESS_TIME,
vi.PARTICIPATION_NUM
vi.PARTICIPATION_NUM,
eu.POINTS INTEGRAL
from epdc_volunteer_info vi
left join epdc_user eu on eu.id = vi.USER_ID
WHERE vi.DEL_FLAG = '0' AND vi.AUDIT_STATUS = '1'

Loading…
Cancel
Save