新增同步操作日志相关方法
parent
cc2cd0b511
commit
40f8701bc2
@ -1,9 +1,9 @@
|
|||||||
package com.glxp.api.dao.sync;
|
package com.glxp.api.dao.sync;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.glxp.api.entity.sync.SyncEditLog;
|
import com.glxp.api.entity.sync.SyncEditLogEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface SyncEditLogMapper extends BaseMapper<SyncEditLog> {
|
public interface SyncEditLogMapper extends BaseMapper<SyncEditLogEntity> {
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
package com.glxp.api.dao.sync;
|
package com.glxp.api.dao.sync;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
import com.glxp.api.entity.sync.SyncEditType;
|
import com.glxp.api.entity.sync.SyncEditTypeEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface SyncEditTypeMapper extends BaseMapper<SyncEditType> {
|
public interface SyncEditTypeMapper extends BaseMapper<SyncEditTypeEntity> {
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
package com.glxp.api.service.sync;
|
package com.glxp.api.service.sync;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.api.entity.sync.SyncEditLog;
|
import com.glxp.api.entity.sync.SyncEditLogEntity;
|
||||||
import com.glxp.api.dao.sync.SyncEditLogMapper;
|
import com.glxp.api.dao.sync.SyncEditLogMapper;
|
||||||
@Service
|
@Service
|
||||||
public class SyncEditLogService extends ServiceImpl<SyncEditLogMapper, SyncEditLog> {
|
public class SyncEditLogService extends ServiceImpl<SyncEditLogMapper, SyncEditLogEntity> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
package com.glxp.api.service.sync;
|
package com.glxp.api.service.sync;
|
||||||
|
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import javax.annotation.Resource;
|
|
||||||
import java.util.List;
|
|
||||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||||
import com.glxp.api.dao.sync.SyncEditTypeMapper;
|
import com.glxp.api.dao.sync.SyncEditTypeMapper;
|
||||||
import com.glxp.api.entity.sync.SyncEditType;
|
import com.glxp.api.entity.sync.SyncEditTypeEntity;
|
||||||
@Service
|
@Service
|
||||||
public class SyncEditTypeService extends ServiceImpl<SyncEditTypeMapper, SyncEditType> {
|
public class SyncEditTypeService extends ServiceImpl<SyncEditTypeMapper, SyncEditTypeEntity> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue