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 Boolean needNameFlag = false;
|
||||
|
||||
/*是否删除id*/
|
||||
private Long isDelete;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,6 +26,9 @@ public class CustomerAddressServiceImpl implements CustomerAddressService {
|
|||
@Override
|
||||
public List<CustomerAddress> getCustomerAddressList(CustomerAddress customerAddress) {
|
||||
logger.info("查询地址的参数{}",customerAddress);
|
||||
if (customerAddress.getIsDelete()==null) {
|
||||
customerAddress.setIsDelete(0L);
|
||||
}
|
||||
List<CustomerAddress> addressList = customerAddressMapper.getCustomerAddressList(customerAddress);
|
||||
logger.info("查询后的地址的值{}",addressList);
|
||||
if(customerAddress.getNeedNameFlag()){
|
||||
|
|
|
|||
Loading…
Reference in New Issue