com.alipay.api.domain.BusinessTime 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, 2021-12-24 16:40:44
*/
public class BusinessTime extends AlipayObject {
private static final long serialVersionUID = 7864428999941831997L;
/**
* 营业时间段中暂停营业时间
*/
@ApiField("end_time")
private String endTime;
/**
* 营业时间段中开始营业时间
*/
@ApiField("start_time")
private String startTime;
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy