企业资质审核代码更新完善

cert
1178634255 2 years ago
parent be491e97d0
commit b9e7877d02

@ -74,6 +74,7 @@ public class SupProductController {
@AuthRuleAnnotation("")
@GetMapping("/sup/product/getRegistrationList")
public BaseResponse getRegistraList(FilterPoductRequest filterPoductRequest) {
System.out.println(filterPoductRequest.toString());
List<SupProductResponse> companyEntities = supProductService.getRegistration(filterPoductRequest);
PageInfo<SupProductResponse> pageInfo = new PageInfo<>(companyEntities);
PageSimpleResponse<SupProductResponse> pageSimpleResponse = new PageSimpleResponse<>();

@ -116,5 +116,6 @@ public class FilterUdiRelRequest extends ListPageRequest {
private Long companyId;
private String companyIdFk;
private String burId;
}

@ -316,4 +316,6 @@ public class BasicUdiRelResponse {
private String failCout;
@TableField(exist = false)
private String passCout;
private String burId;
}

@ -156,8 +156,8 @@
<if test="companyIdFk != '' and companyIdFk != null">
AND bur.companyIdFk = #{companyIdFk}
</if>
<if test="customerId != '' and customerId != null">
AND bur.id = #{customerId}
<if test="burId != '' and burId != null">
AND bur.id = #{burId}
</if>
</where>
ORDER BY bur.updateTime DESC

Loading…
Cancel
Save