package com.doumee.dao.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
|
/**
|
* 确认顾客到店DTO
|
* @author rk
|
* @date 2026/04/15
|
*/
|
@Data
|
@ApiModel("确认顾客到店")
|
public class ConfirmArriveDTO {
|
|
@NotNull(message = "订单主键不能为空")
|
@ApiModelProperty(value = "订单主键", required = true)
|
private Integer orderId;
|
|
@NotNull(message = "门店主键不能为空")
|
@ApiModelProperty(value = "当前操作门店主键", required = true)
|
private Integer shopId;
|
}
|