zhangtao
dongdingding 1 year ago
parent 61c63e738f
commit bdf68bf1b6

@ -237,7 +237,7 @@ public class BPlanEnterprise {
/** /**
* *
*/ */
@ApiModelProperty(value = "上次检查时间") @ApiModelProperty(value = "检查时间")
private Date checkTime; private Date checkTime;

@ -219,4 +219,20 @@ public class BPlanEnterpriseZhifaResponse {
private Date examineEndTime; private Date examineEndTime;
/**
*
*/
@ApiModelProperty(value = "检查时间")
private Date checkTime;
/**
*
*/
@ApiModelProperty(value = "企业信用代码")
private String uuto;
} }

@ -92,7 +92,12 @@
<if test="supervisionLarge != null and supervisionLarge != ''">and s.SUPERVISION_LARGE = <if test="supervisionLarge != null and supervisionLarge != ''">and s.SUPERVISION_LARGE =
#{supervisionLarge} #{supervisionLarge}
</if> </if>
<if test="riskLevel != null and riskLevel != ''">and s.RISK_LEVEL = #{riskLevel}</if> <if test="riskLevel != null and riskLevel != ''">
and s.RISK_LEVEL in
<foreach item="item" index="index" collection="riskLevel.split(',')" open="(" separator="," close=")">
#{riskLevel}
</foreach>
</if>
<if test="standLevel != null and standLevel != ''">and s.STAND_LEVEL = #{standLevel}</if> <if test="standLevel != null and standLevel != ''">and s.STAND_LEVEL = #{standLevel}</if>
<if test="examineEndTime != null ">and s.EXAMINE_END_TIME = #{examineEndTime}</if> <if test="examineEndTime != null ">and s.EXAMINE_END_TIME = #{examineEndTime}</if>
<if test="createId != null ">and s.create_id = #{createId}</if> <if test="createId != null ">and s.create_id = #{createId}</if>

Loading…
Cancel
Save