提交 8ed6113d authored 作者: 黄承天's avatar 黄承天

[建模]deleteAll方法

上级 7ba989c3
......@@ -155,4 +155,6 @@ public interface ModelService {
void validationAllRuleAndQuote(TableInfo tableInfo, Object value, Type propertyType, String propertyNames);
void deleteAllBytableName(String tableName);
}
......@@ -613,6 +613,11 @@ public class ModelImpl implements ModelService {
}
@Override
public void deleteAllBytableName(String tableName) {
String sql = "delete from " + tableName;
jdbcTemplate.execute(sql);
}
void changeValueToTargetType(Map map, Object value, Type propertyType, String propertyName) {
// TimestampType
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论