1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.ruoyi.system.api.domain.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2025/5/26 14:49
| */
| @Data
| @ApiModel
| public class AppointmentTimeDto {
| @ApiModelProperty("门店id")
| private Integer shopId;
| @ApiModelProperty("预约时间(2025-01-01 14:00:00)")
| private String time;
| }
|
|