fix: 根据站码修改修改数据报错问题
This commit is contained in:
parent
7cc2ff6798
commit
57403df980
@ -6,10 +6,12 @@ import com.yfd.platform.common.DataSourceRequest;
|
|||||||
import com.yfd.platform.qgc_base.domain.SdWtBH;
|
import com.yfd.platform.qgc_base.domain.SdWtBH;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public interface ISdWtBHService extends IService<SdWtBH> {
|
public interface ISdWtBHService extends IService<SdWtBH> {
|
||||||
Page<SdWtBH> queryPageList(DataSourceRequest request);
|
Page<SdWtBH> queryPageList(DataSourceRequest request);
|
||||||
boolean add(SdWtBH entity, String source);
|
boolean add(SdWtBH entity, String source);
|
||||||
boolean update(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);
|
boolean delete(List<String> stcds, String source);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -605,9 +605,9 @@ public class MsOperationLogServiceImpl extends ServiceImpl<MsOperationLogMapper,
|
|||||||
Object oldValue = getFieldValue(field, before);
|
Object oldValue = getFieldValue(field, before);
|
||||||
Object newValue = getFieldValue(field, after);
|
Object newValue = getFieldValue(field, after);
|
||||||
|
|
||||||
if (newValue == null) {
|
// if (newValue == null) {
|
||||||
continue;
|
// continue;
|
||||||
}
|
// }
|
||||||
if (equalsValue(oldValue, newValue)) {
|
if (equalsValue(oldValue, newValue)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user