This commit is contained in:
2025-12-20 17:06:20 +08:00
parent 4b759a3294
commit ea8321f1f6
4 changed files with 49 additions and 0 deletions

View File

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