no message
This commit is contained in:
parent
269c023cfb
commit
37b2158fe0
|
|
@ -63,4 +63,7 @@ public class CustomerAddress extends BaseEntity {
|
||||||
private List<Long> streetIds;
|
private List<Long> streetIds;
|
||||||
|
|
||||||
private Boolean needNameFlag = false;
|
private Boolean needNameFlag = false;
|
||||||
|
|
||||||
|
/*是否删除id*/
|
||||||
|
private Long isDelete;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,9 @@ public class CustomerAddressServiceImpl implements CustomerAddressService {
|
||||||
@Override
|
@Override
|
||||||
public List<CustomerAddress> getCustomerAddressList(CustomerAddress customerAddress) {
|
public List<CustomerAddress> getCustomerAddressList(CustomerAddress customerAddress) {
|
||||||
logger.info("查询地址的参数{}",customerAddress);
|
logger.info("查询地址的参数{}",customerAddress);
|
||||||
|
if (customerAddress.getIsDelete()==null) {
|
||||||
|
customerAddress.setIsDelete(0L);
|
||||||
|
}
|
||||||
List<CustomerAddress> addressList = customerAddressMapper.getCustomerAddressList(customerAddress);
|
List<CustomerAddress> addressList = customerAddressMapper.getCustomerAddressList(customerAddress);
|
||||||
logger.info("查询后的地址的值{}",addressList);
|
logger.info("查询后的地址的值{}",addressList);
|
||||||
if(customerAddress.getNeedNameFlag()){
|
if(customerAddress.getNeedNameFlag()){
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue