springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/acid/ComActAcidRecordExcelReturn.java
@@ -137,9 +137,11 @@ @ExcelProperty("是否核对") private Integer checkStatus; @ApiModelProperty("是否特殊职业") @ExcelProperty("是否特殊职业") private String isSpecialJob; @ApiModelProperty("户籍地") @ExcelProperty("户籍地") private String registerResidence; @ExcelProperty("是否为入(返)川学生") private String isStudent; } springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/acid/ComActAcidRecordExcelVO.java
@@ -134,4 +134,7 @@ @ExcelProperty("是否冷链、运输、海口等特殊行业从业者") private String isSpecialJob; @ExcelProperty("是否为入(返)川学生") private String isStudent; } springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/acid/ComActAcidRecordTimeVO.java
@@ -165,6 +165,9 @@ @ApiModelProperty("户籍地") private String registerResidence; @ApiModelProperty("是否学生") private String isStudent; public interface type{ int zj=1; springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/acid/ComActAcidRecordVO.java
@@ -183,6 +183,10 @@ @ApiModelProperty("户籍地") private String registerResidence; @ApiModelProperty("是否学生") private String isStudent; @ApiModelProperty("修改记录") private List<ComActAcidUpdateRecordVO> comActAcidUpdateRecordVOList; springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActAcidRecord.java
@@ -190,4 +190,6 @@ @ApiModelProperty("户籍地") private String registerResidence; private String isStudent; } springcloud_k8s_panzhihuazhihuishequ/service_partybuilding/src/main/resources/mapper/ComPbMemberMapper.xml
@@ -53,19 +53,13 @@ <select id="queryAllByLimit" resultType="com.panzhihua.common.model.vos.partybuilding.PartyBuildingMemberVO"> select m.id, m.org_id, m.name, m.id_card, m.photo_path, m.join_time, m.employment_time, m.audit_result, m.create_at, m.update_at, m.community_id, u.user_id, m.refuse_reason, m.phone, m.type, m.position, m.check_unit_id, m.function, m.specialty_category, m.community_id, m.user_id, m.refuse_reason, m.phone, m.type, m.position, m.check_unit_id, m.function, m.specialty_category, m.specialty_name, m.position_two, m.org_name,cpcu.name as checkUnitName,t2.partyTime,t2.partyInterval,cmv.name as villageName,ca.name as communityName, TIMESTAMPDIFF( YEAR, m.employment_time, DATE_FORMAT( NOW(), '%Y-%m-%d' )) as partyAge, CASE WHEN u.id_card IS NULL THEN '未注册' ELSE '已注册' END status DATE_FORMAT( NOW(), '%Y-%m-%d' )) as partyAge from com_pb_member as m LEFT JOIN sys_user u ON m.id_card = u.id_card and u.type = 1 LEFT JOIN com_pb_org o ON m.org_id = o.id LEFT JOIN com_pb_check_unit as cpcu ON m.check_unit_id = cpcu.id LEFT JOIN com_mng_village cmv on m.village_id = cmv.village_id @@ -74,7 +68,7 @@ <if test="dto.startTime !=null"> and t.begin_at between #{dto.startTime} and #{dto.endTime} </if> GROUP BY t1.user_id ) t2 on u.user_id = t2.user_id GROUP BY t1.user_id ) t2 on m.user_id = t2.user_id <where> and m.audit_result = 1 <if test='dto.orgName != null and dto.orgName != ""'> @@ -84,7 +78,7 @@ and o.id = #{dto.orgId} </if> <if test='dto.account != null and dto.account != ""'> and u.phone like concat (#{dto.account},'%') and m.phone like concat (#{dto.account},'%') </if> <if test='dto.name != null and dto.name != ""'> and m.name like concat (#{dto.name},'%')