bug修复
This commit is contained in:
parent
8af031ea90
commit
0219883406
@ -167,6 +167,7 @@ public class SystemUserController {
|
|||||||
@ApiImplicitParam(name = "enterpriseId", required = false, value = "企业id(多个,分割)", paramType = "body"),
|
@ApiImplicitParam(name = "enterpriseId", required = false, value = "企业id(多个,分割)", paramType = "body"),
|
||||||
@ApiImplicitParam(name = "enterpriseTypeId", required = false, value = "企业类型id", paramType = "body"),
|
@ApiImplicitParam(name = "enterpriseTypeId", required = false, value = "企业类型id", paramType = "body"),
|
||||||
@ApiImplicitParam(name = "xzProjectOrgId", required = false, value = "星纵-项目组织机构id", paramType = "body"),
|
@ApiImplicitParam(name = "xzProjectOrgId", required = false, value = "星纵-项目组织机构id", paramType = "body"),
|
||||||
|
@ApiImplicitParam(name = "qualityRegionId", required = false, value = "区域id", paramType = "body"),
|
||||||
})
|
})
|
||||||
@PostMapping(value = "/getProjectChilderSystemUserList")
|
@PostMapping(value = "/getProjectChilderSystemUserList")
|
||||||
public Result<List<SystemUser>> getProjectChilderSystemUserList(@RequestBody Map<String, Object> map) {
|
public Result<List<SystemUser>> getProjectChilderSystemUserList(@RequestBody Map<String, Object> map) {
|
||||||
|
|||||||
@ -19,6 +19,10 @@
|
|||||||
LEFT JOIN enterprise_info ei on ei.id=d.enterprise_id
|
LEFT JOIN enterprise_info ei on ei.id=d.enterprise_id
|
||||||
LEFT JOIN project_enterprise pe on pe.enterprise_id=ei.id and pe.project_sn=a.sn
|
LEFT JOIN project_enterprise pe on pe.enterprise_id=ei.id and pe.project_sn=a.sn
|
||||||
left join xz_project_org xpo on xpo.id=a.xz_project_org_id
|
left join xz_project_org xpo on xpo.id=a.xz_project_org_id
|
||||||
|
<if test="qualityRegionId != null and qualityRegionId != ''">
|
||||||
|
JOIN quality_region_to_user qrtu on ei.id = qrtu.enterprise_id and a.user_id=qrtu.user_id and
|
||||||
|
qrtu.quality_region_id = #{qualityRegionId}
|
||||||
|
</if>
|
||||||
WHERE a.sn = #{projectSn}
|
WHERE a.sn = #{projectSn}
|
||||||
and a.account_type = 6
|
and a.account_type = 6
|
||||||
<if test="workerName != null and workerName != ''">
|
<if test="workerName != null and workerName != ''">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user