he2802 há 1 ano atrás
pai
commit
cf9b7232cf

+ 5 - 1
zhongzheng-system/src/main/java/com/zhongzheng/modules/user/service/impl/UserCertificateServiceImpl.java

@@ -77,7 +77,11 @@ public class UserCertificateServiceImpl extends ServiceImpl<UserCertificateMappe
 
     @Override
     public List<UserCertificateVo> selectList(UserCertificateQueryBo bo) {
-        return this.baseMapper.selectList(bo);
+        List<UserCertificateVo> list = this.baseMapper.selectList(bo);
+        for(UserCertificateVo vo : list){
+            vo.setOrgName("广东省祥粤建设职业培训学院");
+        }
+        return list;
     }
 
     @Override

+ 3 - 0
zhongzheng-system/src/main/java/com/zhongzheng/modules/user/vo/UserCertificateVo.java

@@ -138,4 +138,7 @@ public class UserCertificateVo {
 
 	@ApiModelProperty("专业名称")
 	private String categoryName;
+
+	@ApiModelProperty("培训机构名称")
+	private String orgName;
 }