com.alipay.api.domain.TemplateBenefitInfoDTO Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.Date;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 卡模板权益信息
*
* @author auto create
* @since 1.0, 2017-08-21 19:55:35
*/
public class TemplateBenefitInfoDTO extends AlipayObject {
private static final long serialVersionUID = 4636325641155427732L;
/**
* 权益描述信息
*/
@ApiListField("benefit_desc")
@ApiField("string")
private List benefitDesc;
/**
* 权益结束时间
*/
@ApiField("end_date")
private Date endDate;
/**
* 开始时间
*/
@ApiField("start_date")
private Date startDate;
/**
* 权益描述
*/
@ApiField("title")
private String title;
public List getBenefitDesc() {
return this.benefitDesc;
}
public void setBenefitDesc(List benefitDesc) {
this.benefitDesc = benefitDesc;
}
public Date getEndDate() {
return this.endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
public Date getStartDate() {
return this.startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}