com.alipay.api.domain.TicketTransInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The 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, 2017-08-15 19:19:07
*/
public class TicketTransInfo extends AlipayObject {
private static final long serialVersionUID = 3891813976572319954L;
/**
* 流水创建时间
*/
@ApiField("create_time")
private Date createTime;
/**
* 最后修改时间,也就是流水状态更新为成功的时间
*/
@ApiField("last_modify_time")
private Date lastModifyTime;
/**
* 凭证流水id
*/
@ApiField("ticket_trans_id")
private String ticketTransId;
/**
* 流水类型
*/
@ApiField("ticket_trans_type")
private String ticketTransType;
public Date getCreateTime() {
return this.createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastModifyTime() {
return this.lastModifyTime;
}
public void setLastModifyTime(Date lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
public String getTicketTransId() {
return this.ticketTransId;
}
public void setTicketTransId(String ticketTransId) {
this.ticketTransId = ticketTransId;
}
public String getTicketTransType() {
return this.ticketTransType;
}
public void setTicketTransType(String ticketTransType) {
this.ticketTransType = ticketTransType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy