fix: 根据站码修改修改数据报错问题

This commit is contained in:
tangwei 2026-08-11 15:05:59 +08:00
parent 7cc2ff6798
commit 57403df980
2 changed files with 5 additions and 3 deletions

View File

@ -6,10 +6,12 @@ import com.yfd.platform.common.DataSourceRequest;
import com.yfd.platform.qgc_base.domain.SdWtBH;
import java.util.List;
import java.util.Map;
public interface ISdWtBHService extends IService<SdWtBH> {
Page<SdWtBH> queryPageList(DataSourceRequest request);
boolean add(SdWtBH entity, String source);
boolean update(SdWtBH entity, String source);
boolean update(Map<String, Object> engInfoPatch, String source) throws Exception;
boolean delete(List<String> stcds, String source);
}

View File

@ -605,9 +605,9 @@ public class MsOperationLogServiceImpl extends ServiceImpl<MsOperationLogMapper,
Object oldValue = getFieldValue(field, before);
Object newValue = getFieldValue(field, after);
if (newValue == null) {
continue;
}
// if (newValue == null) {
// continue;
// }
if (equalsValue(oldValue, newValue)) {
continue;
}