尝试
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user