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

cert
1178634255 2 years ago
parent 370ff0211e
commit fb990da67f

@ -115,4 +115,6 @@ public class FilterUdiRelRequest extends ListPageRequest {
@ApiModelProperty(value = "企业id")
private Long companyId;
private String companyIdFk;
}

@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDate;
import java.util.Date;
@ApiModel("基本UDI关联响应")
@Data
@ -159,5 +160,160 @@ public class BasicUdiRelResponse {
private String manufactory;
/**
* ID
*/
@TableField("manufacturerId")
private String manufacturerId;
/**
*
*/
@TableField("creditCode")
private String creditCode;
/**
*
*/
@TableField("placeArea")
private String placeArea;
/**
*
*/
@TableField("placeAreaCode")
private String placeAreaCode;
/**
*
*/
@TableField("placeAddress")
private String placeAddress;
/**
*
*/
@TableField("legalPersonName")
private String legalPersonName;
/**
* 1
*/
@TableField("legalPersonPapersType")
private String legalPersonPapersType;
/**
*
*/
@TableField("legalPersonPapersCode")
private String legalPersonPapersCode;
/**
*
*/
@TableField("productionArea")
private String productionArea;
/**
*
*/
@TableField("productionAreaCode")
private String productionAreaCode;
/**
*
*/
@TableField("productionAddress")
private String productionAddress;
/**
* 1234
*/
@TableField("registerStatus")
private String registerStatus;
/**
*
*/
@TableField("productionLicenceNum")
private String productionLicenceNum;
/**
*
*/
@TableField("productionLicenceDate")
private LocalDate productionLicenceDate;
/**
*
*/
@TableField("productionRecordNum")
private String productionRecordNum;
/**
*
/
*/
@TableField("productionRecordSection")
private String productionRecordSection;
/**
*
*/
@TableField("productionRecordDate")
private Date productionRecordDate;
/**
*
*/
@TableField("update_date")
private LocalDate updateDate;
/**
* ID
*/
@TableField("customerId")
private String customerId;
/**
* 0稿435612
*/
@TableField("auditStatus")
private Integer auditStatus;
/**
*
*/
@TableField("auditComment")
private String auditComment;
/**
*
*/
@TableField("createUser")
private String createUser;
/**
*
*/
@TableField("createTime")
private Date createTime;
@TableField("agentName")
private String agentName;
@TableField(exist = false)
private String supName;
@TableField(exist = false)
private String failCout;
@TableField(exist = false)
private String passCout;
}

@ -98,7 +98,7 @@
<select id="filterBasicList" parameterType="com.glxp.api.req.basic.FilterUdiRelRequest"
resultType="com.glxp.api.res.basic.BasicUdiRelResponse">
select bur.*,
select bur.*,sm.*,sc.*,
uc.companyName,
nameCode,
packRatio,
@ -150,11 +150,15 @@
FROM basic_udi_rel bur
left JOIN basic_udi_product p on bur.uuid = p.uuid
left join user_company uc on bur.companyIdFk = uc.id
left join sup_manufacturer sm on uc.id=sm.manufacturerId
left join sup_company sc on sm.customerId=sc.customerId
<where>
<if test="companyIdFk != '' and companyIdFk != null">
AND bur.companyIdFk = #{companyIdFk}
</if>
<if test="customerId != '' and customerId != null">
AND bur.companyIdFk = #{customerId}
AND bur.id = #{customerId}
</if>
</where>
ORDER BY bur.updateTime DESC
</select>

Loading…
Cancel
Save