2022-05-07 10:18:50 +08:00
|
|
|
package com.engine.organization.util.db;
|
|
|
|
|
|
|
|
|
|
public interface DBOperateAdapter {
|
|
|
|
|
String like(String some);
|
2022-09-06 09:45:56 +08:00
|
|
|
|
|
|
|
|
String concat(String some);
|
2022-11-15 14:34:16 +08:00
|
|
|
|
|
|
|
|
String currentDate();
|
2022-05-07 10:18:50 +08:00
|
|
|
}
|