com.alipay.api.domain.NormalBusinessTimeRule 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 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, 2020-08-05 20:13:51
*/
public class NormalBusinessTimeRule extends AlipayObject {
private static final long serialVersionUID = 2675938379943355927L;
/**
* 指定月份,当为全年时,传入1,2,3,4,5,6,7,8,9,10,11,12
*/
@ApiListField("month")
@ApiField("number")
private List month;
/**
* 营业时间的时间段
*/
@ApiListField("open_time_list")
@ApiField("time_range")
private List openTimeList;
/**
* 星期
*/
@ApiListField("week")
@ApiField("number")
private List week;
public List getMonth() {
return this.month;
}
public void setMonth(List month) {
this.month = month;
}
public List getOpenTimeList() {
return this.openTimeList;
}
public void setOpenTimeList(List openTimeList) {
this.openTimeList = openTimeList;
}
public List getWeek() {
return this.week;
}
public void setWeek(List week) {
this.week = week;
}
}