cn.com.antcloud.api.ato.v1_0.model.DeliveryDetail Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.model;
import java.lang.String;
/**
* 智租风控-物流信息 */
public class DeliveryDetail {
private String receiverName;
private String receiverMobile;
private String receiverAddress;
/**
* 收件人姓名 */
public String getReceiverName() {
return this.receiverName;
}
/**
* 收件人姓名 */
public void setReceiverName(String receiverName) {
this.receiverName = receiverName;
}
/**
* 收件人手机号 */
public String getReceiverMobile() {
return this.receiverMobile;
}
/**
* 收件人手机号 */
public void setReceiverMobile(String receiverMobile) {
this.receiverMobile = receiverMobile;
}
/**
* 收件人地址 */
public String getReceiverAddress() {
return this.receiverAddress;
}
/**
* 收件人地址 */
public void setReceiverAddress(String receiverAddress) {
this.receiverAddress = receiverAddress;
}
}