采购订单管理配置

20231126-yw
yuanwei 2 years ago
parent 0d2eb0d69c
commit 91b6e4ff2f

@ -7,5 +7,7 @@ import lombok.Data;
@Data
public class SysCustomConfigRequest extends ListPageRequest {
private String businessType;
private String remark;
private String type;
}

@ -10,6 +10,9 @@
<if test="businessType != null and '' != businessType">
AND businessType = #{businessType}
</if>
<if test="remark != '' and remark != null">
AND remark like concat('%', #{remark}, '%')
</if>
<if test="type != null and '' != type">
AND type = #{type}
</if>

Loading…
Cancel
Save