fix: 优化日志存储记录id
This commit is contained in:
parent
9155ce1804
commit
964c1d3a41
@ -31,7 +31,7 @@ public interface IMsOperationLogService {
|
|||||||
* @param source 操作来源
|
* @param source 操作来源
|
||||||
* @param <T> 实体类型
|
* @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 source 操作来源
|
||||||
* @param <T> 实体类型
|
* @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 source 操作来源
|
||||||
* @param <T> 实体类型
|
* @param <T> 实体类型
|
||||||
*/
|
*/
|
||||||
<T> void recordDeleteDetailLog(String tableName, T entity, String source);
|
<T> void recordDeleteDetailLog(String recordId,String tableName, T entity, String source);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -38,7 +38,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
|
|||||||
public boolean add(MsEiaApprovalB entity, String source) {
|
public boolean add(MsEiaApprovalB entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -49,7 +49,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
|
|||||||
MsEiaApprovalB before = this.getById(entity.getId());
|
MsEiaApprovalB before = this.getById(entity.getId());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(before.getId(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -67,7 +67,7 @@ public class MsEiaApprovalBServiceImpl extends ServiceImpl<MsEiaApprovalBMapper,
|
|||||||
wrapper.set(MsEiaApprovalB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(MsEiaApprovalB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(MsEiaApprovalB::getDeleteTime, new Date());
|
wrapper.set(MsEiaApprovalB::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -400,11 +400,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@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) {
|
if (before == null || after == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String recordId = getStcd(before);
|
// String recordId = getStcd(before);
|
||||||
MsOperationLog mainLog = buildMainLog(tableName, recordId, "修改", source);
|
MsOperationLog mainLog = buildMainLog(tableName, recordId, "修改", source);
|
||||||
msOperationLogMapper.insert(mainLog);
|
msOperationLogMapper.insert(mainLog);
|
||||||
|
|
||||||
@ -439,11 +439,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@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) {
|
if (entity == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String recordId = getStcd(entity);
|
// String recordId = getStcd(entity);
|
||||||
MsOperationLog mainLog = buildMainLog(tableName, recordId, "新增", source);
|
MsOperationLog mainLog = buildMainLog(tableName, recordId, "新增", source);
|
||||||
msOperationLogMapper.insert(mainLog);
|
msOperationLogMapper.insert(mainLog);
|
||||||
|
|
||||||
@ -469,11 +469,11 @@ public class MsOperationLogServiceImpl implements IMsOperationLogService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@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) {
|
if (entity == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
String recordId = getStcd(entity);
|
// String recordId = getStcd(entity);
|
||||||
MsOperationLog mainLog = buildMainLog(tableName, recordId, "删除", source);
|
MsOperationLog mainLog = buildMainLog(tableName, recordId, "删除", source);
|
||||||
msOperationLogMapper.insert(mainLog);
|
msOperationLogMapper.insert(mainLog);
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
|
|||||||
public boolean add(MsWarnRuleB entity, String source) {
|
public boolean add(MsWarnRuleB entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -49,7 +49,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
|
|||||||
MsWarnRuleB before = this.getById(entity.getId());
|
MsWarnRuleB before = this.getById(entity.getId());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getId(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -67,7 +67,7 @@ public class MsWarnRuleBServiceImpl extends ServiceImpl<MsWarnRuleBMapper, MsWar
|
|||||||
wrapper.set(MsWarnRuleB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(MsWarnRuleB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(MsWarnRuleB::getDeleteTime, new Date());
|
wrapper.set(MsWarnRuleB::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -71,7 +71,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
|
|||||||
public boolean add(SdAiboxBH entity, String source) {
|
public boolean add(SdAiboxBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -82,7 +82,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
|
|||||||
SdAiboxBH before = this.getById(entity.getStcd());
|
SdAiboxBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -100,7 +100,7 @@ public class SdAiboxBHServiceImpl extends ServiceImpl<SdAiboxBHMapper, SdAiboxBH
|
|||||||
wrapper.set(SdAiboxBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdAiboxBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdAiboxBH::getDeleteTime, new Date());
|
wrapper.set(SdAiboxBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -59,7 +59,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
|
|||||||
public boolean add(SdAimonitorBH entity, String source) {
|
public boolean add(SdAimonitorBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -70,7 +70,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
|
|||||||
SdAimonitorBH before = this.getById(entity.getStcd());
|
SdAimonitorBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -88,7 +88,7 @@ public class SdAimonitorBHServiceImpl extends ServiceImpl<SdAimonitorBHMapper, S
|
|||||||
wrapper.set(SdAimonitorBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdAimonitorBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdAimonitorBH::getDeleteTime, new Date());
|
wrapper.set(SdAimonitorBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -66,7 +66,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
|
|||||||
public boolean add(SdArtsgBH entity, String source) {
|
public boolean add(SdArtsgBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -77,7 +77,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
|
|||||||
SdArtsgBH before = this.getById(entity.getStcd());
|
SdArtsgBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ public class SdArtsgBHServiceImpl extends ServiceImpl<SdArtsgBHMapper, SdArtsgBH
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdArtsgBH entity = this.getById(stcd);
|
SdArtsgBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -68,7 +68,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
|
|||||||
public boolean add(SdDwBH entity, String source) {
|
public boolean add(SdDwBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -79,7 +79,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
|
|||||||
SdDwBH before = this.getById(entity.getStcd());
|
SdDwBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -97,7 +97,7 @@ public class SdDwBHServiceImpl extends ServiceImpl<SdDwBHMapper, SdDwBH> impleme
|
|||||||
wrapper.set(SdDwBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdDwBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdDwBH::getDeleteTime, new Date());
|
wrapper.set(SdDwBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -68,7 +68,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
|
|||||||
public boolean add(SdEqBH entity, String source) {
|
public boolean add(SdEqBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -79,7 +79,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
|
|||||||
SdEqBH before = this.getById(entity.getStcd());
|
SdEqBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -97,7 +97,7 @@ public class SdEqBHServiceImpl extends ServiceImpl<SdEqBHMapper, SdEqBH> impleme
|
|||||||
wrapper.set(SdEqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdEqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdEqBH::getDeleteTime, new Date());
|
wrapper.set(SdEqBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -65,7 +65,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
|
|||||||
public boolean add(SdFbrdBH entity, String source) {
|
public boolean add(SdFbrdBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -76,7 +76,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
|
|||||||
SdFbrdBH before = this.getById(entity.getStcd());
|
SdFbrdBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -89,7 +89,7 @@ public class SdFbrdBHServiceImpl extends ServiceImpl<SdFbrdBHMapper, SdFbrdBH> i
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdFbrdBH entity = this.getById(stcd);
|
SdFbrdBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -69,7 +69,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
|
|||||||
public boolean add(SdFhbtBH entity, String source) {
|
public boolean add(SdFhbtBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -80,7 +80,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
|
|||||||
SdFhbtBH before = this.getById(entity.getStcd());
|
SdFhbtBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -98,7 +98,7 @@ public class SdFhbtBHServiceImpl extends ServiceImpl<SdFhbtBHMapper, SdFhbtBH> i
|
|||||||
wrapper.set(SdFhbtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdFhbtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdFhbtBH::getDeleteTime, new Date());
|
wrapper.set(SdFhbtBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -76,7 +76,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
|
|||||||
public boolean add(SdFishDictoryB entity, String source) {
|
public boolean add(SdFishDictoryB entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getId(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -87,7 +87,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
|
|||||||
SdFishDictoryB before = this.getById(entity.getId());
|
SdFishDictoryB before = this.getById(entity.getId());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getId(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -105,7 +105,7 @@ public class SdFishDictoryBServiceImpl extends ServiceImpl<SdFishDictoryBMapper,
|
|||||||
wrapper.set(SdFishDictoryB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdFishDictoryB::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdFishDictoryB::getDeleteTime, new Date());
|
wrapper.set(SdFishDictoryB::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(id,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -216,7 +216,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
|
|||||||
boolean result = save(entity);
|
boolean result = save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
// msOperationLogService.recordOperationLog(TABLE_NAME, entity.getStcd(), "新增", source);
|
// msOperationLogService.recordOperationLog(TABLE_NAME, entity.getStcd(), "新增", source);
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -226,7 +226,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
|
|||||||
SdFpssBH before = this.getById(entity.getStcd());
|
SdFpssBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -266,7 +266,7 @@ public class SdFpssBHServiceImpl extends ServiceImpl<SdFpssBHMapper, SdFpssBH> i
|
|||||||
wrapper.set(SdFpssBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdFpssBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdFpssBH::getDeleteTime, new Date());
|
wrapper.set(SdFpssBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -69,7 +69,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
|
|||||||
public boolean add(SdOpinfoBH entity, String source) {
|
public boolean add(SdOpinfoBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -80,7 +80,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
|
|||||||
SdOpinfoBH before = this.getById(entity.getStcd());
|
SdOpinfoBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -98,7 +98,7 @@ public class SdOpinfoBHServiceImpl extends ServiceImpl<SdOpinfoBHMapper, SdOpinf
|
|||||||
wrapper.set(SdOpinfoBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdOpinfoBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdOpinfoBH::getDeleteTime, new Date());
|
wrapper.set(SdOpinfoBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -67,7 +67,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
|
|||||||
public boolean add(SdOtteBH entity, String source) {
|
public boolean add(SdOtteBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -78,7 +78,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
|
|||||||
SdOtteBH before = this.getById(entity.getStcd());
|
SdOtteBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -91,7 +91,7 @@ public class SdOtteBHServiceImpl extends ServiceImpl<SdOtteBHMapper, SdOtteBH> i
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdOtteBH entity = this.getById(stcd);
|
SdOtteBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -66,7 +66,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
|
|||||||
public boolean add(SdOtweBH entity, String source) {
|
public boolean add(SdOtweBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -77,7 +77,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
|
|||||||
SdOtweBH before = this.getById(entity.getStcd());
|
SdOtweBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ public class SdOtweBHServiceImpl extends ServiceImpl<SdOtweBHMapper, SdOtweBH> i
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdOtweBH entity = this.getById(stcd);
|
SdOtweBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -70,7 +70,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
|
|||||||
public boolean add(SdSonarBH entity, String source) {
|
public boolean add(SdSonarBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -81,7 +81,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
|
|||||||
SdSonarBH before = this.getById(entity.getStcd());
|
SdSonarBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -99,7 +99,7 @@ public class SdSonarBHServiceImpl extends ServiceImpl<SdSonarBHMapper, SdSonarBH
|
|||||||
wrapper.set(SdSonarBH::getDeleteTime, new Date());
|
wrapper.set(SdSonarBH::getDeleteTime, new Date());
|
||||||
SdSonarBH entity = this.getById(stcd);
|
SdSonarBH entity = this.getById(stcd);
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -66,7 +66,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
|
|||||||
public boolean add(SdTeBH entity, String source) {
|
public boolean add(SdTeBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -77,7 +77,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
|
|||||||
SdTeBH before = this.getById(entity.getStcd());
|
SdTeBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -90,7 +90,7 @@ public class SdTeBHServiceImpl extends ServiceImpl<SdTeBHMapper, SdTeBH> impleme
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdTeBH entity = this.getById(stcd);
|
SdTeBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -67,7 +67,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
|
|||||||
public boolean add(SdVaBH entity, String source) {
|
public boolean add(SdVaBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -78,7 +78,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
|
|||||||
SdVaBH before = this.getById(entity.getStcd());
|
SdVaBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -96,7 +96,7 @@ public class SdVaBHServiceImpl extends ServiceImpl<SdVaBHMapper, SdVaBH> impleme
|
|||||||
wrapper.set(SdVaBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdVaBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdVaBH::getDeleteTime, new Date());
|
wrapper.set(SdVaBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -71,7 +71,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
|
|||||||
}
|
}
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,7 +81,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
|
|||||||
SdVdinfoB before = this.getById(entity.getStcd());
|
SdVdinfoB before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordOperationLog(TABLE_NAME, entity.getStcd(), "修改", source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, entity.getStcd(), "修改", source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -94,7 +94,7 @@ public class SdVdinfoBServiceImpl extends ServiceImpl<SdVdinfoBMapper, SdVdinfoB
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdVdinfoB entity = this.getById(stcd);
|
SdVdinfoB entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -67,7 +67,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
|
|||||||
public boolean add(SdVpBH entity, String source) {
|
public boolean add(SdVpBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,7 +77,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
|
|||||||
SdVpBH before = this.getById(entity.getStcd());
|
SdVpBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -95,7 +95,7 @@ public class SdVpBHServiceImpl extends ServiceImpl<SdVpBHMapper, SdVpBH> impleme
|
|||||||
wrapper.set(SdVpBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdVpBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdVpBH::getDeleteTime, new Date());
|
wrapper.set(SdVpBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -68,7 +68,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
|
|||||||
public boolean add(SdWeBH entity, String source) {
|
public boolean add(SdWeBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -78,7 +78,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
|
|||||||
SdWeBH before = this.getById(entity.getStcd());
|
SdWeBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -91,7 +91,7 @@ public class SdWeBHServiceImpl extends ServiceImpl<SdWeBHMapper, SdWeBH> impleme
|
|||||||
for (String stcd : stcds) {
|
for (String stcd : stcds) {
|
||||||
SdWeBH entity = this.getById(stcd);
|
SdWeBH entity = this.getById(stcd);
|
||||||
if (this.removeById(stcd)) {
|
if (this.removeById(stcd)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -70,7 +70,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
|
|||||||
public boolean add(SdWqBH entity, String source) {
|
public boolean add(SdWqBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source); }
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source); }
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -80,7 +80,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
|
|||||||
SdWqBH before = this.getById(entity.getStcd());
|
SdWqBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -98,7 +98,7 @@ public class SdWqBHServiceImpl extends ServiceImpl<SdWqBHMapper, SdWqBH> impleme
|
|||||||
wrapper.set(SdWqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdWqBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdWqBH::getDeleteTime, new Date());
|
wrapper.set(SdWqBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source); count++;
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source); count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return count > 0;
|
return count > 0;
|
||||||
|
|||||||
@ -72,7 +72,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
|
|||||||
public boolean add(SdWtBH entity, String source) {
|
public boolean add(SdWtBH entity, String source) {
|
||||||
boolean result = this.save(entity);
|
boolean result = this.save(entity);
|
||||||
if (result) {
|
if (result) {
|
||||||
msOperationLogService.recordAddDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordAddDetailLog(entity.getStcd(),TABLE_NAME, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -83,7 +83,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
|
|||||||
SdWtBH before = this.getById(entity.getStcd());
|
SdWtBH before = this.getById(entity.getStcd());
|
||||||
boolean result = this.updateById(entity);
|
boolean result = this.updateById(entity);
|
||||||
if (result && before != null) {
|
if (result && before != null) {
|
||||||
msOperationLogService.recordModifyDetailLog(TABLE_NAME, before, entity, source);
|
msOperationLogService.recordModifyDetailLog(entity.getStcd(),TABLE_NAME, before, entity, source);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
@ -101,7 +101,7 @@ public class SdWtBHServiceImpl extends ServiceImpl<SdWtBHMapper, SdWtBH> impleme
|
|||||||
wrapper.set(SdWtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
wrapper.set(SdWtBH::getDeleteUser, SecurityUtils.getCurrentUsername());
|
||||||
wrapper.set(SdWtBH::getDeleteTime, new Date());
|
wrapper.set(SdWtBH::getDeleteTime, new Date());
|
||||||
if (this.update(wrapper)) {
|
if (this.update(wrapper)) {
|
||||||
msOperationLogService.recordDeleteDetailLog(TABLE_NAME, entity, source);
|
msOperationLogService.recordDeleteDetailLog(stcd,TABLE_NAME, entity, source);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user