|
|
@@ -0,0 +1,26 @@
|
|
|
+package shop.alien.entity.store.vo;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 桌号状态VO
|
|
|
+ *
|
|
|
+ * @author system
|
|
|
+ * @since 2025-01-XX
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@ApiModel(value = "StoreTableStatusVO对象", description = "桌号状态")
|
|
|
+public class StoreTableStatusVO implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "桌号ID")
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "状态(0:空闲, 1:就餐中, 2:其他)")
|
|
|
+ private Integer status;
|
|
|
+}
|