fix: 优化日志存储记录id

This commit is contained in:
tangwei 2026-07-22 11:13:04 +08:00
parent 9155ce1804
commit 964c1d3a41
24 changed files with 75 additions and 75 deletions

View File

@ -31,7 +31,7 @@ public interface IMsOperationLogService {
* @param source 操作来源
* @param <T> 实体类型
*/
<T> void recordModifyDetailLog(String tableName, T before, T after, String source);
<T> void recordModifyDetailLog(String recordId,String tableName, T before, T after, String source);
/**
* 通用新增操作详情日志含字段级详情
@ -44,7 +44,7 @@ public interface IMsOperationLogService {
* @param source 操作来源
* @param <T> 实体类型
*/
<T> void recordAddDetailLog(String tableName, T entity, String source);
<T> void recordAddDetailLog(String recordId,String tableName, T entity, String source);
/**
* 通用删除操作详情日志含字段级详情
@ -57,5 +57,5 @@ public interface IMsOperationLogService {
* @param source 操作来源
* @param <T> 实体类型
*/
<T> void recordDeleteDetailLog(String tableName, T entity, String source);
<T> void recordDeleteDetailLog(String recordId,String tableName, T entity, String source);
}

View File

@ -38,7 +38,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
public boolean add(MsEiaApprovalB entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
}
return result;
}
@ -49,7 +49,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
MsEiaApprovalB before = this.getById(entity.getId());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(before.getId(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -67,7 +67,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
wrapper.set(MsEiaApprovalB::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(MsEiaApprovalB::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -400,11 +400,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
}
@Override
public <T> void recordModifyDetailLog(String tableName, T before, T after, String source) {
public <T> void recordModifyDetailLog(String recordId,String tableName, T before, T after, String source) {
if (before == null || after == null) {
return;
}
String recordId = getStcd(before);
// String recordId = getStcd(before);
MsOperationLog mainLog = buildMainLog(tableName, recordId, "修改", source);
msOperationLogMapper.insert(mainLog);
@ -439,11 +439,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
}
@Override
public <T> void recordAddDetailLog(String tableName, T entity, String source) {
public <T> void recordAddDetailLog(String recordId,String tableName, T entity, String source) {
if (entity == null) {
return;
}
String recordId = getStcd(entity);
// String recordId = getStcd(entity);
MsOperationLog mainLog = buildMainLog(tableName, recordId, "新增", source);
msOperationLogMapper.insert(mainLog);
@ -469,11 +469,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
}
@Override
public <T> void recordDeleteDetailLog(String tableName, T entity, String source) {
public <T> void recordDeleteDetailLog(String recordId,String tableName, T entity, String source) {
if (entity == null) {
return;
}
String recordId = getStcd(entity);
// String recordId = getStcd(entity);
MsOperationLog mainLog = buildMainLog(tableName, recordId, "删除", source);
msOperationLogMapper.insert(mainLog);

View File

@ -38,7 +38,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
public boolean add(MsWarnRuleB entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
}
return result;
}
@ -49,7 +49,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
MsWarnRuleB before = this.getById(entity.getId());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getId(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -67,7 +67,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
wrapper.set(MsWarnRuleB::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(MsWarnRuleB::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -71,7 +71,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
public boolean add(SdAiboxBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -82,7 +82,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
SdAiboxBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -100,7 +100,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
wrapper.set(SdAiboxBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdAiboxBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -59,7 +59,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
public boolean add(SdAimonitorBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -70,7 +70,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
SdAimonitorBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -88,7 +88,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
wrapper.set(SdAimonitorBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdAimonitorBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -66,7 +66,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
public boolean add(SdArtsgBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -77,7 +77,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
SdArtsgBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -90,7 +90,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
for (String stcd : stcds) {
SdArtsgBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -68,7 +68,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
public boolean add(SdDwBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -79,7 +79,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
SdDwBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -97,7 +97,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
wrapper.set(SdDwBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdDwBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -68,7 +68,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
public boolean add(SdEqBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -79,7 +79,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
SdEqBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -97,7 +97,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
wrapper.set(SdEqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdEqBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -65,7 +65,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
public boolean add(SdFbrdBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -76,7 +76,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
SdFbrdBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -89,7 +89,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
for (String stcd : stcds) {
SdFbrdBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -69,7 +69,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
public boolean add(SdFhbtBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -80,7 +80,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
SdFhbtBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -98,7 +98,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
wrapper.set(SdFhbtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdFhbtBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -76,7 +76,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
public boolean add(SdFishDictoryB entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
}
return result;
}
@ -87,7 +87,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
SdFishDictoryB before = this.getById(entity.getId());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getId(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -105,7 +105,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
wrapper.set(SdFishDictoryB::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdFishDictoryB::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -216,7 +216,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
boolean result = save(entity);
if (result) {
// msOperationLogService.recordOperationLog(TABLE_NAME, entity.getStcd(), "新增", source);
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -226,7 +226,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
SdFpssBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -266,7 +266,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
wrapper.set(SdFpssBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdFpssBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -69,7 +69,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
public boolean add(SdOpinfoBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -80,7 +80,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
SdOpinfoBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -98,7 +98,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
wrapper.set(SdOpinfoBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdOpinfoBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -67,7 +67,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
public boolean add(SdOtteBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -78,7 +78,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
SdOtteBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -91,7 +91,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
for (String stcd : stcds) {
SdOtteBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -66,7 +66,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
public boolean add(SdOtweBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -77,7 +77,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
SdOtweBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -90,7 +90,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
for (String stcd : stcds) {
SdOtweBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -70,7 +70,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
public boolean add(SdSonarBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -81,7 +81,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
SdSonarBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -99,7 +99,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
wrapper.set(SdSonarBH::getDeleteTime, new Date());
SdSonarBH entity = this.getById(stcd);
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -66,7 +66,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
public boolean add(SdTeBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -77,7 +77,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
SdTeBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -90,7 +90,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
for (String stcd : stcds) {
SdTeBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -67,7 +67,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
public boolean add(SdVaBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -78,7 +78,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
SdVaBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -96,7 +96,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
wrapper.set(SdVaBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdVaBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}

View File

@ -71,7 +71,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
}
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
return result;
}
@ -81,7 +81,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
SdVdinfoB before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordOperationLog(TABLE_NAME, entity.getStcd(), "修改", source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, entity.getStcd(), "修改", source);
}
return result;
}
@ -94,7 +94,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
for (String stcd : stcds) {
SdVdinfoB entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -67,7 +67,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
public boolean add(SdVpBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
return result;
}
@ -77,7 +77,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
SdVpBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -95,7 +95,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
wrapper.set(SdVpBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdVpBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -68,7 +68,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
public boolean add(SdWeBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
return result;
}
@ -78,7 +78,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
SdWeBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -91,7 +91,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
for (String stcd : stcds) {
SdWeBH entity = this.getById(stcd);
if (this.removeById(stcd)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -70,7 +70,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
public boolean add(SdWqBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
return result;
}
@ -80,7 +80,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
SdWqBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -98,7 +98,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
wrapper.set(SdWqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdWqBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
}
}
return count > 0;

View File

@ -72,7 +72,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
public boolean add(SdWtBH entity, String source) {
boolean result = this.save(entity);
if (result) {
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
}
return result;
}
@ -83,7 +83,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
SdWtBH before = this.getById(entity.getStcd());
boolean result = this.updateById(entity);
if (result && before != null) {
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
}
return result;
}
@ -101,7 +101,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
wrapper.set(SdWtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
wrapper.set(SdWtBH::getDeleteTime, new Date());
if (this.update(wrapper)) {
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
count++;
}
}