xpc
2024-02-01 b8c73220547dad009cb85f5aed9ca8b7f17e3759
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.product.datasource.utils;
 
import com.product.core.entity.FieldSetEntity;
import com.product.datasource.entity.UpdateFilterEntity;
 
/**
 * @Author cheng
 * @Date 2022/7/19 14:51
 * @Desc 更新条件回调
 */
public interface UpdateFilterCallBack {
 
 
    UpdateFilterEntity createUpdateFilter(FieldSetEntity fse);
 
}