|
|
@@ -134,7 +134,6 @@ public class CrmCustomerPropertyServiceImpl extends ServiceImpl<CrmCustomerPrope
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
public int batchAddCustomerProperties(Long customerId, List<CrmCustomerProperty> properties) {
|
|
|
int count = 0;
|
|
|
for (CrmCustomerProperty property : properties) {
|
|
|
@@ -177,7 +176,6 @@ public class CrmCustomerPropertyServiceImpl extends ServiceImpl<CrmCustomerPrope
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @Transactional(rollbackFor = Exception.class)
|
|
|
public int batchAddPropertiesByTemplateIds(Long customerId, Map<Long, String> propertyMap, String createBy) {
|
|
|
int count = 0;
|
|
|
for (Map.Entry<Long, String> entry : propertyMap.entrySet()) {
|