You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
300 B
21 lines
300 B
package com.boge.common.query;
|
|
|
|
import java.util.Objects;
|
|
|
|
/**
|
|
* s
|
|
* @author ZZQ
|
|
* @Date 2022/12/14 8:40 下午
|
|
*/
|
|
@FunctionalInterface
|
|
public interface LConsumer<X,Y,Z> {
|
|
|
|
/**
|
|
* 切面
|
|
* @param x 、
|
|
* @param y 、
|
|
* @param z 、
|
|
*/
|
|
void accept(X x,Y y,Z z);
|
|
|
|
}
|
|
|