3/4 sync 优化1.0
parent
b2f8eb0f30
commit
6dd93982ca
@ -1,7 +1,8 @@
|
||||
package com.glxp.api.dao.sync;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.dao.BaseMapperPlus;
|
||||
import com.glxp.api.entity.sync.SyncDataChangeBustypesEntity;
|
||||
|
||||
public interface SyncDataChangeBustypesDao extends BaseMapper<SyncDataChangeBustypesEntity> {
|
||||
public interface SyncDataChangeBustypesDao extends BaseMapperPlus<SyncDataChangeBustypesDao,SyncDataChangeBustypesEntity,SyncDataChangeBustypesEntity> {
|
||||
}
|
||||
|
@ -1,12 +1,11 @@
|
||||
package com.glxp.api.dao.sync;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.api.dao.BaseMapperPlus;
|
||||
import com.glxp.api.entity.sync.SyncEditLogEntity;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface SyncEditLogMapper extends BaseMapper<SyncEditLogEntity> {
|
||||
int insertOrUpdate(SyncEditLogEntity record);
|
||||
public interface SyncEditLogMapper extends BaseMapperPlus<SyncEditLogMapper,SyncEditLogEntity,SyncEditLogEntity> {
|
||||
boolean insertOrUpdate(SyncEditLogEntity record);
|
||||
|
||||
int insertOrUpdateSelective(SyncEditLogEntity record);
|
||||
}
|
||||
|
Loading…
Reference in New Issue