|
|
@ -69,8 +69,8 @@ public class CodeCustomerServiceImpl extends BaseServiceImpl<CodeCustomerDao, Co |
|
|
|
return ConvertUtils.sourceToTarget(entityList, CodeCustomerDTO.class); |
|
|
|
} |
|
|
|
|
|
|
|
private QueryWrapper<CodeCustomerEntity> getWrapper(Map<String, Object> params){ |
|
|
|
String id = (String)params.get(FieldConstant.ID_HUMP); |
|
|
|
private QueryWrapper<CodeCustomerEntity> getWrapper(Map<String, Object> params) { |
|
|
|
String id = (String) params.get(FieldConstant.ID_HUMP); |
|
|
|
|
|
|
|
QueryWrapper<CodeCustomerEntity> wrapper = new QueryWrapper<>(); |
|
|
|
wrapper.eq(StringUtils.isNotBlank(id), FieldConstant.ID, id); |
|
|
@ -119,6 +119,11 @@ public class CodeCustomerServiceImpl extends BaseServiceImpl<CodeCustomerDao, Co |
|
|
|
return baseDao.selectAuditingCodeList(source); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public CodeCustomerDTO getUploadCodeByCustomer(String customerId, String clientType) { |
|
|
|
return baseDao.selectUploadCodeByCustomer(customerId, clientType); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void deleteCode(String customerId, String clientType) { |
|
|
|
baseDao.deleteCode(customerId, clientType); |
|
|
|