待办接口加更新时间

This commit is contained in:
shuo.wang
2025-05-21 16:15:27 +08:00
parent 55ba214e96
commit 1bae29ff4c
2 changed files with 3 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package com.cool.store.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
import java.util.List;
/**
@@ -44,6 +45,7 @@ public class BaseInfoVO {
private Integer workflowSubStageStatus;
@ApiModelProperty("加盟模式")
private Integer joinMode;
private Date updateTime;
public BaseInfoVO(){}
/**

View File

@@ -197,6 +197,7 @@ public class DeskServiceImpl implements DeskService {
baseInfoVO.setUserPortraitList(labelBaseInfoList);
baseInfoVO.setJoinMode(lineInfoDO.getJoinMode());
baseInfoVO.setWantShopAreaName(wantShopAreaMap.get(lineInfoDO.getWantShopAreaId()));
baseInfoVO.setUpdateTime(lineInfoDO.getUpdateTime());
return baseInfoVO;
}