huliguo
2025-07-24 1a1e608f143bd49a000dbd0192ce9fd6c04feb6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.shop.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data; /**
 * @author zhibing.pu
 * @Date 2025/6/3 16:08
 */
@Data
@ApiModel
public class CancelReservationDto {
    @ApiModelProperty(value = "预约id")
    private String id;
    @ApiModelProperty(value = "取消原因")
    private String reason;
}