cn.com.antcloud.api.ato.v1_0.response.QueryWithholdSignResponse 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.response;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
import java.util.Date;
/**
* 代扣签约查询 */
public class QueryWithholdSignResponse extends AntCloudProdResponse {
private String status;
private Date signTime;
private Date validTime;
private Date invalidTime;
private String agreementNo;
/**
* 协议当前状态
* 1. UNSIGNED:未签约
* 2. SIGNED:已签约;
* 3. TERMINATED:已解约 */
public String getStatus() {
return this.status;
}
/**
* 协议当前状态
* 1. UNSIGNED:未签约
* 2. SIGNED:已签约;
* 3. TERMINATED:已解约 */
public void setStatus(String status) {
this.status = status;
}
/**
* 协议签署时间 */
public Date getSignTime() {
return this.signTime;
}
/**
* 协议签署时间 */
public void setSignTime(Date signTime) {
this.signTime = signTime;
}
/**
* 协议生效时间 */
public Date getValidTime() {
return this.validTime;
}
/**
* 协议生效时间 */
public void setValidTime(Date validTime) {
this.validTime = validTime;
}
/**
* 协议失效时间 */
public Date getInvalidTime() {
return this.invalidTime;
}
/**
* 协议失效时间 */
public void setInvalidTime(Date invalidTime) {
this.invalidTime = invalidTime;
}
/**
* 代扣协议号 */
public String getAgreementNo() {
return this.agreementNo;
}
/**
* 代扣协议号 */
public void setAgreementNo(String agreementNo) {
this.agreementNo = agreementNo;
}
}