企业资质审核代码更新备份

cert
1178634255 2 years ago
parent b5e7486e63
commit a501b856b1

@ -127,5 +127,53 @@ public class UserCertEntity implements Serializable {
@TableField(exist = false)
private String key;
/**
* ID
*/
@TableField("CustomerId")
private String customerId;
/**
*
*/
@TableField("vailDate")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date vailDate;
@TableField("remark1")
private String remark1;
/**
* 1:2.3.
*/
@TableField("type")
private Integer type;
/**
* ID
*/
@TableField("manufacturerIdFk")
private String manufacturerIdFk;
/**
* ID
*/
@TableField("productIdFk")
private String productIdFk;
/**
*
*/
@TableField("auditStatus")
private Integer auditStatus;
/**
*
*/
@TableField("auditComment")
private String auditComment;
private static final long serialVersionUID = 1L;
}

@ -117,6 +117,13 @@ public class certRequest extends ListPageRequest {
@ApiModelProperty(value = "更新时间")
@TableField(value = "updateTime")
private Date updateTime;
private String customerId;
private String manufacturerIdFk;
private String productIdFk;
private Integer auditStatus;
private Integer type;
private String lastUpdateTime;
private static final long serialVersionUID = 1L;
}

@ -31,12 +31,33 @@
FROM user_cert_set c LEFT JOIN
(SELECT * from user_cert WHERE businessId=#{registerId}) a ON c.name = a.name
</select>
<select id="filterCompanyCert" parameterType="com.glxp.api.req.purchase.certRequest"
<select id="filterCompanyCert" parameterType="com.glxp.api.req.purchase.FilterSupCertRequest"
resultType="com.glxp.api.entity.sup.UserCertEntity">
select * from user_cert
select * from sup_cert
<where>
<if test="businessId != '' and businessId!=null">
and businessId = #{businessId}
<if test="customerId != '' and customerId!=null">
and customerId = #{customerId}
</if>
<if test="manufacturerIdFk != '' and manufacturerIdFk!=null">
and manufacturerIdFk = #{manufacturerIdFk}
</if>
<if test="productIdFk != '' and productIdFk!=null">
and productIdFk = #{productIdFk}
</if>
<if test="type != '' and type!=null">
and `type` = #{type}
</if>
<if test="auditStatus != null and auditStatus !=20 and auditStatus !=24 and auditStatus !=25" >
and auditStatus = #{auditStatus}
</if>
<if test="auditStatus ==20">
and (auditStatus = 1 or auditStatus=4)
</if>
<if test="auditStatus ==24">
and (auditStatus = 2 or auditStatus=3 or auditStatus=5 or auditStatus=6)
</if>
<if test="auditStatus ==25">
and (auditStatus !=0)
</if>
</where>

Loading…
Cancel
Save