private void updateContent(SystemConfig config, String value) { if ((config.getContent() == null && value == null) || config.getContent().equals(value)) return; config.setContent(value); config.setUpdateUser(""); config.setUpdateTime(new Date()); systemConfigRepository.update(config); }
private void addConfig(SystemConfig config) { config.setUpdateUser(""); config.setUpdateTime(new Date()); config.setCreateTime(new Date()); config.setCreateUser(""); config.setContent(""); systemConfigRepository.create(config); }