コード例 #1
0
ファイル: ResultServiceImp.java プロジェクト: helloNice/rscc
 @Override
 public void deleteById(String tableName, String uuid) {
   super.deleteById("data_result_" + tableName, null, UUID.UUIDFromString(uuid));
 }
コード例 #2
0
ファイル: ResultServiceImp.java プロジェクト: helloNice/rscc
 public void deleteByUuid(String tableName, String uuid) {
   super.deleteById(tableName, null, UUID.UUIDFromString(uuid));
 }