|
@@ -1,62 +1,14 @@
|
|
|
package com.baomidou.mybatisplus.extension.injector.methods;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
-import com.baomidou.mybatisplus.core.enums.SqlMethod;
|
|
|
-import com.baomidou.mybatisplus.core.metadata.TableFieldInfo;
|
|
|
-import com.baomidou.mybatisplus.core.metadata.TableInfo;
|
|
|
-import com.baomidou.mybatisplus.core.toolkit.CollectionUtils;
|
|
|
-import com.baomidou.mybatisplus.core.toolkit.StringPool;
|
|
|
-import com.baomidou.mybatisplus.extension.injector.AbstractLogicMethod;
|
|
|
-import org.apache.ibatis.mapping.MappedStatement;
|
|
|
-import org.apache.ibatis.mapping.SqlSource;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
-import static java.util.stream.Collectors.joining;
|
|
|
-import static java.util.stream.Collectors.toList;
|
|
|
-
|
|
|
/**
|
|
|
* <p>
|
|
|
- * 根据 id 逻辑删除数据,并带字段填充功能
|
|
|
- * 注意入参是 entity !!! ,如果字段没有自动填充,就只是单纯的逻辑删除
|
|
|
+ * use {@link com.baomidou.mybatisplus.extension.injector.methods.additional.LogicDeleteByIdWithFill}
|
|
|
* </p>
|
|
|
*
|
|
|
* @author miemie
|
|
|
* @since 2018-09-13
|
|
|
+ * @deprecated 2018-11-09
|
|
|
*/
|
|
|
-public class LogicDeleteByIdWithFill extends AbstractLogicMethod {
|
|
|
-
|
|
|
- /**
|
|
|
- * mapper 对应的方法名
|
|
|
- */
|
|
|
- private static final String MAPPER_METHOD = "deleteByIdWithFill";
|
|
|
-
|
|
|
- @Override
|
|
|
- public MappedStatement injectMappedStatement(Class<?> mapperClass, Class<?> modelClass, TableInfo tableInfo) {
|
|
|
- String sql;
|
|
|
- SqlMethod sqlMethod = SqlMethod.LOGIC_DELETE_BY_ID;
|
|
|
- if (tableInfo.isLogicDelete()) {
|
|
|
- List<TableFieldInfo> fieldInfos = tableInfo.getFieldList().stream()
|
|
|
- .filter(i -> i.getFieldFill() == FieldFill.UPDATE || i.getFieldFill() == FieldFill.INSERT_UPDATE)
|
|
|
- .collect(toList());
|
|
|
- if (CollectionUtils.isNotEmpty(fieldInfos)) {
|
|
|
- String sqlSet = "SET " + fieldInfos.stream().map(i -> i.getSqlSet(StringPool.EMPTY))
|
|
|
- .collect(joining(StringPool.EMPTY)) +
|
|
|
- tableInfo.getLogicDeleteSql(false, true);
|
|
|
- sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), sqlSet,
|
|
|
- tableInfo.getKeyColumn(), tableInfo.getKeyProperty(),
|
|
|
- tableInfo.getLogicDeleteSql(true, false));
|
|
|
- } else {
|
|
|
- sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), sqlLogicSet(tableInfo),
|
|
|
- tableInfo.getKeyColumn(), tableInfo.getKeyProperty(),
|
|
|
- tableInfo.getLogicDeleteSql(true, false));
|
|
|
- }
|
|
|
- } else {
|
|
|
- sqlMethod = SqlMethod.DELETE_BY_ID;
|
|
|
- sql = String.format(sqlMethod.getSql(), tableInfo.getTableName(), tableInfo.getKeyColumn(),
|
|
|
- tableInfo.getKeyProperty());
|
|
|
- }
|
|
|
- SqlSource sqlSource = languageDriver.createSqlSource(configuration, sql, modelClass);
|
|
|
- return addUpdateMappedStatement(mapperClass, modelClass, MAPPER_METHOD, sqlSource);
|
|
|
- }
|
|
|
+@Deprecated
|
|
|
+public class LogicDeleteByIdWithFill extends com.baomidou.mybatisplus.extension.injector.methods.additional.LogicDeleteByIdWithFill {
|
|
|
}
|