com.alipay.api.domain.CampDetail 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 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-09-30 11:20:37
*/
public class CampDetail extends AlipayObject {
private static final long serialVersionUID = 4894789399214477149L;
/**
* 活动工单列表
*/
@ApiListField("activity_orders")
@ApiField("activity_order_d_t_o")
private List activityOrders;
/**
* 活动子状态,如审核中
*/
@ApiField("audit_status")
private String auditStatus;
/**
* 是否自动续期该活动,Y表示是,N表示否,默认为N
*/
@ApiField("auto_delay_flag")
private String autoDelayFlag;
/**
* 预算信息
*/
@ApiField("budget_info")
private BudgetInfo budgetInfo;
/**
* 活动约束信息
*/
@ApiField("constraint_info")
private ConstraintInfo constraintInfo;
/**
* 活动描述
*/
@ApiField("desc")
private String desc;
/**
* 活动结束时间
*/
@ApiField("end_time")
private Date endTime;
/**
* 扩展参数
*/
@ApiField("ext_info")
private String extInfo;
/**
* 活动id
*/
@ApiField("id")
private String id;
/**
* 活动名称
*/
@ApiField("name")
private String name;
/**
* 营销工具
*/
@ApiListField("promo_tools")
@ApiField("promo_tool")
private List promoTools;
/**
* 投放渠道信息
*/
@ApiListField("publish_channels")
@ApiField("publish_channel")
private List publishChannels;
/**
* 招商信息
*/
@ApiField("recruit_info")
private RecruitInfo recruitInfo;
/**
* 活动开始时间
*/
@ApiField("start_time")
private Date startTime;
/**
* 活动状态,CREATED:草稿,ENABLED:生效,DISABLED:无效,STARTED:启动,CLOSED:停止,FINISHED:完成
*/
@ApiField("status")
private String status;
/**
* 活动类型.DIRECT_SEND:直发奖,CONSUME_SEND:消费送
*/
@ApiField("type")
private String type;
public List getActivityOrders() {
return this.activityOrders;
}
public void setActivityOrders(List activityOrders) {
this.activityOrders = activityOrders;
}
public String getAuditStatus() {
return this.auditStatus;
}
public void setAuditStatus(String auditStatus) {
this.auditStatus = auditStatus;
}
public String getAutoDelayFlag() {
return this.autoDelayFlag;
}
public void setAutoDelayFlag(String autoDelayFlag) {
this.autoDelayFlag = autoDelayFlag;
}
public BudgetInfo getBudgetInfo() {
return this.budgetInfo;
}
public void setBudgetInfo(BudgetInfo budgetInfo) {
this.budgetInfo = budgetInfo;
}
public ConstraintInfo getConstraintInfo() {
return this.constraintInfo;
}
public void setConstraintInfo(ConstraintInfo constraintInfo) {
this.constraintInfo = constraintInfo;
}
public String getDesc() {
return this.desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public Date getEndTime() {
return this.endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List getPromoTools() {
return this.promoTools;
}
public void setPromoTools(List promoTools) {
this.promoTools = promoTools;
}
public List getPublishChannels() {
return this.publishChannels;
}
public void setPublishChannels(List publishChannels) {
this.publishChannels = publishChannels;
}
public RecruitInfo getRecruitInfo() {
return this.recruitInfo;
}
public void setRecruitInfo(RecruitInfo recruitInfo) {
this.recruitInfo = recruitInfo;
}
public Date getStartTime() {
return this.startTime;
}
public void setStartTime(Date startTime) {
this.startTime = startTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy