|
|
@@ -275,13 +275,13 @@ public class BrandSubmitServiceImpl implements BrandSubmitService {
|
|
|
if (CollectionUtils.isNotEmpty(existBrandCn)) {
|
|
|
for (Brand existBrand : existBrandCn) {
|
|
|
brandSubmit.setUuid(existBrand.getUuid());
|
|
|
- brandSubmit.setVersion(existBrand.getVersion());
|
|
|
+ brandSubmit.setVersion((short) (existBrand.getVersion() + 1));
|
|
|
}
|
|
|
}
|
|
|
if (CollectionUtils.isNotEmpty(existBrandEn)) {
|
|
|
for (Brand existBrand : existBrandEn) {
|
|
|
brandSubmit.setUuid(existBrand.getUuid());
|
|
|
- brandSubmit.setVersion(existBrand.getVersion());
|
|
|
+ brandSubmit.setVersion((short) (existBrand.getVersion() + 1));
|
|
|
}
|
|
|
}
|
|
|
brandSubmit.setDefinetime(brandSubmit.getLastModifyDate());
|