Pu Zhibing
5 天以前 f10cb578f9828a21d8ab200b1c3320d29e8e0801
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;
}