采购订单管理配置

20231126-yw
yuanwei 1 year ago
parent e76c86a50c
commit 3f999b4e9c

@ -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