This commit is contained in:
苏竹红
2024-05-10 13:44:21 +08:00
parent 92a8cdbd1e
commit 1b7e30c501
2 changed files with 3 additions and 0 deletions

View File

@@ -23,6 +23,8 @@ public class PreparationCommonPendingVO {
private String regionNodeName;
@ApiModelProperty("阶段")
private Integer stage;
@ApiModelProperty("子阶段")
private Integer subStage;
@ApiModelProperty("阶段状态")
private Integer subStageStatus;
@ApiModelProperty("线索ID")

View File

@@ -392,6 +392,7 @@ public class DeskServiceImpl implements DeskService {
preparationCommonPendingVO.setLineId(x.getLineId());
preparationCommonPendingVO.setShopId(x.getShopId());
preparationCommonPendingVO.setStage(x.getShopStage());
preparationCommonPendingVO.setSubStage(x.getShopSubStage());
preparationCommonPendingVO.setSubStageStatus(x.getShopSubStageStatus());
ShopInfoDO shopInfoDO = shopInfoMap.getOrDefault(x.getShopId(),new ShopInfoDO());
preparationCommonPendingVO.setSubmitTime(DateUtils.parseDateToStr(DateUtils.SPECIAL_DATE_START,finalShopPayDoMap.getOrDefault(x.getShopId(), new LinePayDO()).getCreateTime()));