feat: 修复

v3
chenhc 5 months ago
parent a06e48f759
commit a39e691ba5

@ -37,8 +37,7 @@ public class CodeRelController {
return ResultVOUtils.error(ResultEnum.DATA_ERROR,"参数错误");
}
List<CodeRel> list = codeRelService.list(new LambdaQueryWrapper<CodeRel>()
.eq(CodeRel::getDiNameCode,param.getDiNameCode()).or().eq(CodeRel::getDrugCode,param.getDrugCode())
.or(StrUtil.isNotBlank(param.getApprovalNum())).eq(StrUtil.isNotBlank(param.getApprovalNum()),CodeRel::getApprovalNum,param.getApprovalNum()));
.eq(CodeRel::getDiNameCode,param.getDiNameCode()).or().eq(CodeRel::getDrugCode,param.getDrugCode()));
return ResultVOUtils.success(list);
}

@ -78,10 +78,4 @@ public class CodeRel {
public Integer fromType;
/**
*
*/
@TableField(value = "approvalNum")
@ApiModelProperty(value="批准文号")
private String approvalNum;
}

@ -88,9 +88,6 @@
<if test="fromType != null">
fromType,
</if>
<if test="approvalNum != null">
approvalNum,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="diNameCode != null">
@ -129,9 +126,6 @@
<if test="fromType != null">
#{fromType,jdbcType=TINYINT},
</if>
<if test="approvalNum != null">
#{approvalNum,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udidl.admin.entity.chs.CodeRel">
@ -231,9 +225,6 @@
<if test="fromType != null">
fromType = #{fromType,jdbcType=TINYINT},
</if>
<if test="approvalNum != null">
approvalNum = #{approvalNum,jdbcType=TINYINT},
</if>
</set>
<where>
<if test="diNameCode != null">

Loading…
Cancel
Save