com.alipay.api.domain.InteligentForbiddenTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 智能营销不可用时间
*
* @author auto create
* @since 1.0, 2018-01-22 16:28:54
*/
public class InteligentForbiddenTime extends AlipayObject {
private static final long serialVersionUID = 5155657616287598964L;
/**
* 不可用日期区间,仅支持到天
不可用区间起止日期用逗号分隔,多个区间之间用^分隔
如"2016-05-01,2016-05-03^2016-10-01,2016-10-07"表示2016年5月1日至5月3日,10月1日至10月7日券不可用
*/
@ApiField("days")
private String days;
public String getDays() {
return this.days;
}
public void setDays(String days) {
this.days = days;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy