Pu Zhibing
4 天以前 890c290afef9faca8ddaf0fea6197c3daa472141
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.shop.domain.dto;
 
import com.ruoyi.system.api.domain.dto.MgtPageDto;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; /**
 * @author zhibing.pu
 * @Date 2025/6/3 15:17
 */
@Data
@ApiModel
public class ShopAppointableTimeListDto extends MgtPageDto {
    @ApiModelProperty(value = "商户id")
    private Integer shopId;
    @ApiModelProperty(value = "状态(0=已取消,1=待确认,2=等待中,3=已结束)")
    private Integer status;
}