许鹏程
2023-06-30 3bbfaa3d7d416afbd154576453c8ee9e7e2f8899
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);
 
}