| 12345678910111213141516171819 |
- package com.poyee.annotation.db;
- import java.lang.annotation.*;
- /**
- * 右连接
- */
- @Target({ElementType.FIELD})
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface RightJoin {
- // 表名
- String table();
- // 关联条件
- String on();
- // 别名
- String alias();
- }
|