| | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.panzhihua.common.enums.MerchantBusinessPeriod; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | private String lon; |
| | | |
| | | @ApiModelProperty("营业开始时间") |
| | | @JsonFormat(pattern = "HH:mm:ss", timezone = "GMT+8") |
| | | private Date beginAt; |
| | | |
| | | @ApiModelProperty("营业截止时间") |
| | | @JsonFormat(pattern = "HH:mm:ss", timezone = "GMT+8") |
| | | private Date endAt; |
| | | |
| | | @ApiModelProperty("营业周期") |
| | |
| | | @ApiModelProperty("营业状态") |
| | | private Integer businessStatus; |
| | | |
| | | @ApiModelProperty("咨询量") |
| | | @ApiModelProperty("总咨询量") |
| | | private Integer consultationVolume; |
| | | |
| | | @ApiModelProperty("月咨询量") |
| | | private Integer monthConsultationVolume; |
| | | |
| | | @ApiModelProperty("商家绑定账户") |
| | | private String account; |
| | |
| | | |
| | | @ApiModelProperty("服务类型id列表") |
| | | private List<Long> serviceIds; |
| | | |
| | | public void setPeriod(String period) { |
| | | this.period = MerchantBusinessPeriod.valueOf(period); |
| | | } |
| | | |
| | | public void setBusinessStatus(Boolean businessStatus) { |
| | | this.businessStatus = businessStatus ? 1 : 0; |
| | | } |
| | | } |