许鹏程
2023-10-23 a7b18ead641993787f29cfb3c143a39ef3e60b5e
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);
 
}