1.排队取号 取消排号接口

This commit is contained in:
2024-09-13 15:22:00 +08:00
parent a82e723237
commit 970971cde9
4 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.chaozhanggui.system.cashierservice.entity.dto;
import lombok.Data;
import javax.validation.constraints.NotNull;
@Data
public class CancelCallQueueDTO {
@NotNull
private Integer queueId;
@NotNull
private Integer shopId;
}