mirror of
https://github.com/yzcheng90/X-SpringBoot
synced 2025-11-08 16:49:36 +08:00
12 lines
237 B
Java
12 lines
237 B
Java
package com.suke.czx.common.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 分表注解
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE})
|
|
public @interface ShardingTable {
|
|
} |