All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eleme.openapi.sdk.api.entity.flow.RestaurantEntryFlowStatsReq Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.entity.flow;

import eleme.openapi.sdk.api.enumeration.flow.*;
import eleme.openapi.sdk.api.entity.flow.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;

public class RestaurantEntryFlowStatsReq{

    /**
     * 餐厅ID
     */
    private Long shopId;
    public Long getShopId() {
        return shopId;
    }
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
    
    /**
     * 查询开始时间
     */
    @JsonFormat(locale = "zh" , timezone="GMT+8")
    private Date startDate;
    public Date getStartDate() {
        return startDate;
    }
    public void setStartDate(Date startDate) {
        this.startDate = startDate;
    }
    
    /**
     * 查询结束时间
     */
    @JsonFormat(locale = "zh" , timezone="GMT+8")
    private Date endDate;
    public Date getEndDate() {
        return endDate;
    }
    public void setEndDate(Date endDate) {
        this.endDate = endDate;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy