@Retention(value=RUNTIME) @Target(value=TYPE) @Documented public @interface Table
@Table
public class UserEntity {...}
public abstract String keyspace
@Table(keyspace="production_data", table = "user")
public class UserEntity {...}
public abstract String table
@Table(table = "user")
public class UserEntity {...}
Copyright © 2012-2021. All Rights Reserved.