撤销修改

This commit is contained in:
2025-12-22 10:24:35 +08:00
parent 2bc5c8cff3
commit 102ee912a9
10 changed files with 9 additions and 75 deletions

View File

@@ -1,25 +0,0 @@
package com.czg.utils;
import com.mybatisflex.core.BaseMapper;
import com.mybatisflex.core.update.UpdateChain;
import java.io.Serial;
import java.io.Serializable;
/**
* @author ww
* @date 2023/8/23
*/
public class CzgUpdateChain<T> extends UpdateChain<T> implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
public CzgUpdateChain(BaseMapper<T> baseMapper) {
super(baseMapper);
}
public CzgUpdateChain(BaseMapper<T> baseMapper, T entityObject) {
super(baseMapper, entityObject);
}
}