You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
584 B
Java
22 lines
584 B
Java
package com.glxp.api.service.sync;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.glxp.api.entity.sync.SyncEditLogEntity;
|
|
import com.glxp.api.dao.sync.SyncEditLogMapper;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
@Service
|
|
public class SyncEditLogService extends ServiceImpl<SyncEditLogMapper, SyncEditLogEntity> {
|
|
|
|
@Resource
|
|
SyncEditLogMapper syncEditLogMapper;
|
|
|
|
public boolean insertLog(SyncEditLogEntity syncEditLogEntity){
|
|
|
|
return syncEditLogMapper.insert(syncEditLogEntity)>0;
|
|
}
|
|
|
|
}
|