待办接口加更新时间
This commit is contained in:
@@ -45,7 +45,7 @@ public class BaseInfoVO {
|
||||
private Integer workflowSubStageStatus;
|
||||
@ApiModelProperty("加盟模式")
|
||||
private Integer joinMode;
|
||||
private Date updateTime;
|
||||
|
||||
|
||||
public BaseInfoVO(){}
|
||||
/**
|
||||
|
||||
@@ -4,6 +4,8 @@ import com.cool.store.vo.BaseInfoVO;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2024/4/1 16:37
|
||||
@@ -14,7 +16,7 @@ public class PayStagePendingVO extends BaseInfoVO {
|
||||
|
||||
@ApiModelProperty("缴费时间 2024年04月23日 16:00")
|
||||
private String payTime;
|
||||
|
||||
private Date updateTime;
|
||||
public PayStagePendingVO(){};
|
||||
|
||||
public PayStagePendingVO(BaseInfoVO baseInfoVO) {
|
||||
|
||||
@@ -4,6 +4,8 @@ import com.cool.store.vo.BaseInfoVO;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2024/4/1 16:55
|
||||
@@ -14,6 +16,7 @@ public class SigningPendingVO extends BaseInfoVO {
|
||||
|
||||
@ApiModelProperty("提交时间 2024年04月23日 16:00")
|
||||
private String submitTime;
|
||||
private Date updateTime;
|
||||
|
||||
public SigningPendingVO(){};
|
||||
|
||||
|
||||
@@ -107,6 +107,7 @@ public class DeskServiceImpl implements DeskService {
|
||||
IntendPendingVO intendPendingVO = new IntendPendingVO(baseInfoVO);
|
||||
intendPendingVO.setJoinTime(new Date());
|
||||
intendPendingVO.setJoinMode(x.getJoinMode());
|
||||
intendPendingVO.setUpdateTime(x.getUpdateTime());
|
||||
list.add(intendPendingVO);
|
||||
});
|
||||
|
||||
@@ -133,7 +134,7 @@ public class DeskServiceImpl implements DeskService {
|
||||
if (linePayDO != null && linePayDO.getPayTime() != null) {
|
||||
payStagePendingVO.setPayTime(DateUtils.parseDateToStr(SPECIAL_DATE_START, linePayDO.getPayTime()));
|
||||
}
|
||||
|
||||
payStagePendingVO.setUpdateTime(x.getUpdateTime());
|
||||
|
||||
list.add(payStagePendingVO);
|
||||
});
|
||||
@@ -161,6 +162,7 @@ public class DeskServiceImpl implements DeskService {
|
||||
if (date != null) {
|
||||
signingPendingVO.setSubmitTime(DateUtils.parseDateToStr(SPECIAL_DATE_START, date));
|
||||
}
|
||||
signingPendingVO.setUpdateTime(x.getUpdateTime());
|
||||
list.add(signingPendingVO);
|
||||
});
|
||||
page.setList(list);
|
||||
@@ -197,7 +199,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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user