mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
22 lines
333 B
Java
22 lines
333 B
Java
package com.github.yulichang.annotation;
|
|
|
|
/**
|
|
* 映射表条件
|
|
* 用法参考 mybatis plus wrapper 的 .apply()方法
|
|
*
|
|
* @author yulichang
|
|
* @since 1.2.0
|
|
*/
|
|
public @interface MPJMappingApply {
|
|
|
|
/**
|
|
* sql片段
|
|
*/
|
|
String value();
|
|
|
|
/**
|
|
* .apply() 对应的可变参数
|
|
*/
|
|
String[] args();
|
|
}
|