All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.SignRecordLogVO Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.domain;

import java.util.Date;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 在线协议-签约记录
 *
 * @author auto create
 * @since 1.0, 2022-08-15 14:07:39
 */
public class SignRecordLogVO extends AlipayObject {

	private static final long serialVersionUID = 7724732528238955119L;

	/**
	 * 签约的协议版本
	 */
	@ApiField("s_version")
	private String sVersion;

	/**
	 * 签约动作 S/U
	 */
	@ApiField("status")
	private String status;

	/**
	 * 签约/解约日期
	 */
	@ApiField("trans_date")
	private Date transDate;

	public String getsVersion() {
		return this.sVersion;
	}
	public void setsVersion(String sVersion) {
		this.sVersion = sVersion;
	}

	public String getStatus() {
		return this.status;
	}
	public void setStatus(String status) {
		this.status = status;
	}

	public Date getTransDate() {
		return this.transDate;
	}
	public void setTransDate(Date transDate) {
		this.transDate = transDate;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy