待办接口

This commit is contained in:
shuo.wang
2025-06-23 16:48:59 +08:00
parent 8a143ea816
commit 9d73c7ae9b
4 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.cool.store.response;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author: WangShuo
* @Date: 2025/06/23/16:33
* @Version 1.0
* @注释:
*/
@Data
public class DeskStageResponse {
@ApiModelProperty(value = "阶段")
private Integer shopSubStage;
@ApiModelProperty(value = "阶段状态")
private Integer shopSubStageStatus;
@ApiModelProperty(value = "阶段状态描述")
private String shopSubStageStatusDesc;
}