@Component
public class MybatisSqlBeanServiceImpl<T,ID>
extends cn.vonce.sql.java.service.BaseSqlBeanServiceImpl<T>
implements cn.vonce.sql.service.SqlBeanService<T,ID>, cn.vonce.sql.service.AdvancedDbManageService<T>
| 构造器和说明 |
|---|
MybatisSqlBeanServiceImpl() |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
alter(cn.vonce.sql.bean.Alter alter) |
int |
alter(List<cn.vonce.sql.bean.Alter> alterList) |
int |
alter(cn.vonce.sql.bean.Table table,
List<cn.vonce.sql.bean.ColumnInfo> columnInfoList) |
int |
alterRemarks(String remarks) |
String |
backup() |
void |
backup(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> void |
backup(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
void |
backup(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName) |
void |
backup(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> void |
backup(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
void |
backup(String targetTableName) |
void |
backup(String targetSchema,
String targetTableName) |
void |
backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> void |
backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
void |
backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName) |
void |
backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> void |
backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetTableName) |
int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName) |
int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> int |
copy(cn.vonce.sql.define.ConditionHandle<T> cond,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName) |
int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName) |
int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns) |
<R> int |
copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns) |
int |
count() |
int |
count(Class<?> returnType,
cn.vonce.sql.bean.Select select) |
int |
count(cn.vonce.sql.bean.Select select) |
int |
countBy(cn.vonce.sql.define.ConditionHandle<T> cond) |
int |
countBy(String where,
Object... args) |
int |
countBy(cn.vonce.sql.helper.Wrapper wrapper) |
int |
createSchema(String name) |
void |
createTable() |
int |
delete(cn.vonce.sql.bean.Delete delete) |
int |
delete(cn.vonce.sql.bean.Delete delete,
boolean ignore) |
int |
deleteBy(cn.vonce.sql.define.ConditionHandle<T> cond) |
int |
deleteBy(String where,
Object... args) |
int |
deleteBy(cn.vonce.sql.helper.Wrapper wrapper) |
int |
deleteById(ID... id) |
void |
dropAndCreateTable() |
int |
dropSchema(String name) |
void |
dropTable() |
Long |
getAutoIncrId() |
Class<?> |
getBeanClass() |
List<cn.vonce.sql.bean.ColumnInfo> |
getColumnInfoList() |
List<cn.vonce.sql.bean.ColumnInfo> |
getColumnInfoList(String tableName) |
List<cn.vonce.sql.bean.ColumnInfo> |
getColumnInfoList(String schema,
String tableName) |
List<String> |
getSchemas(String name) |
cn.vonce.sql.config.SqlBeanMeta |
getSqlBeanMeta() |
List<cn.vonce.sql.bean.TableInfo> |
getTableList() |
List<cn.vonce.sql.bean.TableInfo> |
getTableList(String tableName) |
List<cn.vonce.sql.bean.TableInfo> |
getTableList(String schema,
String tableName) |
int |
insert(Collection<T> beanList) |
int |
insert(cn.vonce.sql.bean.Insert<T> insert) |
int |
insert(T... bean) |
int |
logicallyDeleteBy(cn.vonce.sql.define.ConditionHandle<T> cond) |
int |
logicallyDeleteBy(String where,
Object... args) |
int |
logicallyDeleteBy(cn.vonce.sql.helper.Wrapper wrapper) |
int |
logicallyDeleteById(ID... id) |
<R> cn.vonce.sql.page.ResultData<R> |
paging(Class<R> returnType,
cn.vonce.sql.bean.Select select,
int pagenum,
int pagesize) |
<R> cn.vonce.sql.page.ResultData<R> |
paging(Class<R> returnType,
cn.vonce.sql.bean.Select select,
cn.vonce.sql.page.PageHelper<R> pageHelper) |
cn.vonce.sql.page.ResultData<T> |
paging(cn.vonce.sql.bean.Select select,
int pagenum,
int pagesize) |
cn.vonce.sql.page.ResultData<T> |
paging(cn.vonce.sql.bean.Select select,
cn.vonce.sql.page.PageHelper<T> pageHelper) |
List<T> |
select() |
<R> List<R> |
select(Class<R> returnType) |
<R> List<R> |
select(Class<R> returnType,
cn.vonce.sql.bean.Paging paging) |
<R> List<R> |
select(Class<R> returnType,
cn.vonce.sql.bean.Select select) |
List<T> |
select(cn.vonce.sql.bean.Paging paging) |
List<T> |
select(cn.vonce.sql.bean.Select select) |
<R> List<R> |
selectBy(Class<R> returnType,
cn.vonce.sql.define.ConditionHandle<T> cond) |
<R> List<R> |
selectBy(Class<R> returnType,
cn.vonce.sql.bean.Paging paging,
cn.vonce.sql.define.ConditionHandle<T> cond) |
<R> List<R> |
selectBy(Class<R> returnType,
cn.vonce.sql.bean.Paging paging,
String where,
Object... args) |
<R> List<R> |
selectBy(Class<R> returnType,
cn.vonce.sql.bean.Paging paging,
cn.vonce.sql.helper.Wrapper wrapper) |
<R> List<R> |
selectBy(Class<R> returnType,
String where,
Object... args) |
<R> List<R> |
selectBy(Class<R> returnType,
cn.vonce.sql.helper.Wrapper wrapper) |
List<T> |
selectBy(cn.vonce.sql.define.ConditionHandle<T> cond) |
List<T> |
selectBy(cn.vonce.sql.bean.Paging paging,
cn.vonce.sql.define.ConditionHandle<T> cond) |
List<T> |
selectBy(cn.vonce.sql.bean.Paging paging,
String where,
Object... args) |
List<T> |
selectBy(cn.vonce.sql.bean.Paging paging,
cn.vonce.sql.helper.Wrapper wrapper) |
List<T> |
selectBy(String where,
Object... args) |
List<T> |
selectBy(cn.vonce.sql.helper.Wrapper wrapper) |
<R> R |
selectById(Class<R> returnType,
ID id) |
T |
selectById(ID id) |
<R> List<R> |
selectByIds(Class<R> returnType,
ID... ids) |
List<T> |
selectByIds(ID... ids) |
Map<String,Object> |
selectMap(cn.vonce.sql.bean.Select select) |
List<Map<String,Object>> |
selectMapList(cn.vonce.sql.bean.Select select) |
<R> R |
selectOne(Class<R> returnType,
cn.vonce.sql.bean.Select select) |
T |
selectOne(cn.vonce.sql.bean.Select select) |
<R> R |
selectOneBy(Class<R> returnType,
cn.vonce.sql.define.ConditionHandle<T> cond) |
<R> R |
selectOneBy(Class<R> returnType,
String where,
Object... args) |
<R> R |
selectOneBy(Class<R> returnType,
cn.vonce.sql.helper.Wrapper wrapper) |
T |
selectOneBy(cn.vonce.sql.define.ConditionHandle<T> cond) |
T |
selectOneBy(String where,
Object... args) |
T |
selectOneBy(cn.vonce.sql.helper.Wrapper wrapper) |
int |
update(cn.vonce.sql.bean.Update<T> update) |
int |
update(cn.vonce.sql.bean.Update<T> update,
boolean ignore) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.bean.Column[] filterColumns,
String where,
Object... args) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.define.ConditionHandle<T> cond) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.define.ConditionHandle<T> cond,
cn.vonce.sql.bean.Column... filterColumns) |
<R> int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.define.ConditionHandle<T> cond,
cn.vonce.sql.define.ColumnFun<T,R>... filterColumns) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
String where,
Object... args) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.helper.Wrapper wrapper) |
int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.helper.Wrapper wrapper,
cn.vonce.sql.bean.Column... filterColumns) |
<R> int |
updateBy(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.helper.Wrapper wrapper,
cn.vonce.sql.define.ColumnFun<T,R>... filterColumns) |
int |
updateBy(T bean,
cn.vonce.sql.define.ConditionHandle<T> cond) |
int |
updateBy(T bean,
String where,
Object... args) |
int |
updateBy(T bean,
cn.vonce.sql.helper.Wrapper wrapper) |
int |
updateByBean(T bean,
boolean updateNotNull,
boolean optimisticLock,
String where) |
int |
updateByBean(T bean,
boolean updateNotNull,
boolean optimisticLock,
String where,
cn.vonce.sql.bean.Column... filterColumns) |
<R> int |
updateByBean(T bean,
boolean updateNotNull,
boolean optimisticLock,
String where,
cn.vonce.sql.define.ColumnFun<T,R>... filterColumns) |
int |
updateByBean(T bean,
String where) |
int |
updateByBeanId(T bean) |
int |
updateByBeanId(T bean,
boolean updateNotNull,
boolean optimisticLock) |
int |
updateByBeanId(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.bean.Column... filterColumns) |
<R> int |
updateByBeanId(T bean,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.define.ColumnFun<T,R>... filterColumns) |
int |
updateById(T bean,
ID id) |
int |
updateById(T bean,
ID id,
boolean updateNotNull,
boolean optimisticLock) |
int |
updateById(T bean,
ID id,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.bean.Column... filterColumns) |
<R> int |
updateById(T bean,
ID id,
boolean updateNotNull,
boolean optimisticLock,
cn.vonce.sql.define.ColumnFun<T,R>... filterColumns) |
public cn.vonce.sql.config.SqlBeanMeta getSqlBeanMeta()
public Long getAutoIncrId()
getAutoIncrId 在类中 cn.vonce.sql.java.service.BaseSqlBeanServiceImpl<T>public Class<?> getBeanClass()
@DbSwitch(value=SLAVE) public T selectOne(cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public <R> R selectOne(Class<R> returnType, cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public Map<String,Object> selectMap(cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public <R> R selectOneBy(Class<R> returnType, String where, Object... args)
@DbSwitch(value=SLAVE) public T selectOneBy(cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public T selectOneBy(cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public <R> R selectOneBy(Class<R> returnType, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public <R> R selectOneBy(Class<R> returnType, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, String where, Object... args)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, cn.vonce.sql.bean.Paging paging, String where, Object... args)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, cn.vonce.sql.bean.Paging paging, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public <R> List<R> selectBy(Class<R> returnType, cn.vonce.sql.bean.Paging paging, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public List<T> selectBy(cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public List<T> selectBy(cn.vonce.sql.bean.Paging paging, String where, Object... args)
@DbSwitch(value=SLAVE) public List<T> selectBy(cn.vonce.sql.bean.Paging paging, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public List<T> selectBy(cn.vonce.sql.bean.Paging paging, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public int countBy(cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=SLAVE) public int countBy(cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=SLAVE) public int count()
@DbSwitch(value=SLAVE) public <R> List<R> select(Class<R> returnType, cn.vonce.sql.bean.Paging paging)
@DbSwitch(value=SLAVE) public List<Map<String,Object>> selectMapList(cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public <R> List<R> select(Class<R> returnType, cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public int count(cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public int count(Class<?> returnType, cn.vonce.sql.bean.Select select)
@DbSwitch(value=SLAVE) public cn.vonce.sql.page.ResultData<T> paging(cn.vonce.sql.bean.Select select, cn.vonce.sql.page.PageHelper<T> pageHelper)
@DbSwitch(value=SLAVE) public cn.vonce.sql.page.ResultData<T> paging(cn.vonce.sql.bean.Select select, int pagenum, int pagesize)
@DbSwitch(value=SLAVE) public <R> cn.vonce.sql.page.ResultData<R> paging(Class<R> returnType, cn.vonce.sql.bean.Select select, cn.vonce.sql.page.PageHelper<R> pageHelper)
@DbSwitch(value=SLAVE) public <R> cn.vonce.sql.page.ResultData<R> paging(Class<R> returnType, cn.vonce.sql.bean.Select select, int pagenum, int pagesize)
@DbSwitch(value=MASTER) public int deleteById(ID... id)
@DbSwitch(value=MASTER) public int deleteBy(cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=MASTER) public int deleteBy(cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=MASTER) public int delete(cn.vonce.sql.bean.Delete delete)
@DbSwitch(value=MASTER)
public int delete(cn.vonce.sql.bean.Delete delete,
boolean ignore)
@DbSwitch(value=MASTER) public int logicallyDeleteById(ID... id)
@DbSwitch(value=MASTER) public int logicallyDeleteBy(String where, Object... args)
@DbSwitch(value=MASTER) public int logicallyDeleteBy(cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=MASTER) public int logicallyDeleteBy(cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=MASTER) public int update(cn.vonce.sql.bean.Update<T> update)
@DbSwitch(value=MASTER) public int update(cn.vonce.sql.bean.Update<T> update, boolean ignore)
@DbSwitch(value=MASTER) public int updateById(T bean, ID id, boolean updateNotNull, boolean optimisticLock)
@DbSwitch(value=MASTER) public int updateByBeanId(T bean)
@DbSwitch(value=MASTER) public int updateById(T bean, ID id, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.bean.Column... filterColumns)
@DbSwitch(value=MASTER) public <R> int updateById(T bean, ID id, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.define.ColumnFun<T,R>... filterColumns)
@DbSwitch(value=MASTER) public int updateByBeanId(T bean, boolean updateNotNull, boolean optimisticLock)
@DbSwitch(value=MASTER) public int updateByBeanId(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.bean.Column... filterColumns)
@DbSwitch(value=MASTER) public <R> int updateByBeanId(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.define.ColumnFun<T,R>... filterColumns)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, String where, Object... args)
@DbSwitch(value=MASTER) public int updateBy(T bean, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=MASTER) public int updateBy(T bean, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.helper.Wrapper wrapper)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.define.ConditionHandle<T> cond)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.bean.Column[] filterColumns, String where, Object... args)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.helper.Wrapper wrapper, cn.vonce.sql.bean.Column... filterColumns)
@DbSwitch(value=MASTER) public int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.define.ConditionHandle<T> cond, cn.vonce.sql.bean.Column... filterColumns)
@DbSwitch(value=MASTER) public <R> int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.helper.Wrapper wrapper, cn.vonce.sql.define.ColumnFun<T,R>... filterColumns)
@DbSwitch(value=MASTER) public <R> int updateBy(T bean, boolean updateNotNull, boolean optimisticLock, cn.vonce.sql.define.ConditionHandle<T> cond, cn.vonce.sql.define.ColumnFun<T,R>... filterColumns)
@DbSwitch(value=MASTER) public int updateByBean(T bean, boolean updateNotNull, boolean optimisticLock, String where)
@DbSwitch(value=MASTER) public int updateByBean(T bean, boolean updateNotNull, boolean optimisticLock, String where, cn.vonce.sql.bean.Column... filterColumns)
@DbSwitch(value=MASTER) public <R> int updateByBean(T bean, boolean updateNotNull, boolean optimisticLock, String where, cn.vonce.sql.define.ColumnFun<T,R>... filterColumns)
@Tran @DbTransactional @DbSwitch(value=MASTER) public int insert(T... bean)
insert 在接口中 cn.vonce.sql.service.InsertService<T>@Tran @DbTransactional @DbSwitch(value=MASTER) public int insert(Collection<T> beanList)
insert 在接口中 cn.vonce.sql.service.InsertService<T>@Tran @DbTransactional @DbSwitch(value=MASTER) public int insert(cn.vonce.sql.bean.Insert<T> insert)
insert 在接口中 cn.vonce.sql.service.InsertService<T>@DbSwitch(value=MASTER) public String backup()
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void backup(String targetTableName)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void backup(String targetSchema, String targetTableName)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public void backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void backup(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public void backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.bean.Column... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void backup(cn.vonce.sql.define.ConditionHandle<T> cond, String targetTableName, cn.vonce.sql.bean.Column... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public <R> void backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public <R> void backup(cn.vonce.sql.define.ConditionHandle<T> cond, String targetTableName, cn.vonce.sql.define.ColumnFun<T,R>... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public void backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void backup(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName, cn.vonce.sql.bean.Column... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public <R> void backup(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public <R> void backup(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName, cn.vonce.sql.define.ColumnFun<T,R>... columns)
backup 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetTableName)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.bean.Column... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetTableName, cn.vonce.sql.bean.Column... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public <R> int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public <R> int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetTableName, cn.vonce.sql.define.ColumnFun<T,R>... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.bean.Column... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName, cn.vonce.sql.bean.Column... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public <R> int copy(cn.vonce.sql.helper.Wrapper wrapper,
String targetSchema,
String targetTableName,
cn.vonce.sql.define.ColumnFun<T,R>... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public <R> int copy(cn.vonce.sql.define.ConditionHandle<T> cond, String targetSchema, String targetTableName, cn.vonce.sql.define.ColumnFun<T,R>... columns)
copy 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER)
public int alter(cn.vonce.sql.bean.Table table,
List<cn.vonce.sql.bean.ColumnInfo> columnInfoList)
alter 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int alter(cn.vonce.sql.bean.Alter alter)
alter 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int alter(List<cn.vonce.sql.bean.Alter> alterList)
alter 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public int alterRemarks(String remarks)
alterRemarks 在接口中 cn.vonce.sql.service.AdvancedDbManageService<T>@DbSwitch(value=MASTER) public List<String> getSchemas(String name)
getSchemas 在接口中 cn.vonce.sql.service.AdvancedDbManageService<T>@DbSwitch(value=MASTER) public int createSchema(String name)
createSchema 在接口中 cn.vonce.sql.service.AdvancedDbManageService<T>@DbSwitch(value=MASTER) public int dropSchema(String name)
dropSchema 在接口中 cn.vonce.sql.service.AdvancedDbManageService<T>@DbSwitch(value=MASTER) public void dropTable()
dropTable 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void createTable()
createTable 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=MASTER) public void dropAndCreateTable()
dropAndCreateTable 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=SLAVE) public List<cn.vonce.sql.bean.TableInfo> getTableList()
getTableList 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=SLAVE) public List<cn.vonce.sql.bean.TableInfo> getTableList(String tableName)
getTableList 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=SLAVE) public List<cn.vonce.sql.bean.TableInfo> getTableList(String schema, String tableName)
getTableList 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=SLAVE) public List<cn.vonce.sql.bean.ColumnInfo> getColumnInfoList()
getColumnInfoList 在接口中 cn.vonce.sql.service.DbManageService<T>@DbSwitch(value=SLAVE) public List<cn.vonce.sql.bean.ColumnInfo> getColumnInfoList(String tableName)
getColumnInfoList 在接口中 cn.vonce.sql.service.DbManageService<T>Copyright © 2025. All rights reserved.