记得上下班打卡 | git大法好,push需谨慎

Commit 2c6464b8 authored by GaoHu's avatar GaoHu

查看助力详情返回预约开始结束时间

parent 20ec62ee
package com.liquidnet.service.goblin.dto.manage.vo;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.liquidnet.commons.lang.util.DateUtil;
import com.liquidnet.service.goblin.dto.vo.GoblinGoodsAnticipateShareVo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
import java.util.List;
/**
......@@ -35,6 +38,20 @@ public class HelpValueVo implements java.io.Serializable, Cloneable{
@ApiModelProperty("发起人昵称")
private String nickname;
/**
* 预约开始时间
*/
@ApiModelProperty(value = "预约开始时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = DateUtil.DATE_FULL_STR)
private LocalDateTime aboutStartDate;
/**
* 预约结束时间
*/
@ApiModelProperty(value = "预约结束时间")
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = DateUtil.DATE_FULL_STR)
private LocalDateTime aboutEndDate;
private static final HelpValueVo obj = new HelpValueVo();
public static HelpValueVo getNew() {
try {
......@@ -53,6 +70,8 @@ public class HelpValueVo implements java.io.Serializable, Cloneable{
this.setNickname(shareVo.getNickname());
this.setAvatar(shareVo.getAvatar());
this.setHelpPeople(shareVo.getHelpPeople());
this.setAboutStartDate(shareVo.getAboutStartDate());
this.setAboutEndDate(shareVo.getAboutEndDate());
return this;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment