后台服务
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.

MyBatisPlus.java 401 B

2 years ago
123456789101112131415161718
  1. package com.iformall.plugin;
  2. import java.util.List;
  3. import java.util.Map;
  4. import org.apache.ibatis.plugin.Invocation;
  5. import com.iformall.plugin.entity.ChainValue;
  6. public interface MyBatisPlus {
  7. /**
  8. * @param invocation
  9. * @return Map<coloumn,value>
  10. * @throws Throwable
  11. */
  12. public Map<String,ChainValue> intercept(Invocation invocation,Map<String,ChainValue> chainMap) throws Throwable;
  13. }