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

Commit 18d6af98 authored by GaoHu's avatar GaoHu

BUG:组合购详情增加系统时间

parent 71da4156
package com.liquidnet.service.goblin.dto.vo;
import com.liquidnet.commons.lang.util.DateUtil;
import com.liquidnet.service.goblin.param.GoblinMixDetailsParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
......@@ -55,6 +54,8 @@ public class GoblinMixAppDetailsVo implements Serializable, Cloneable {
private String shelvesTime;
@ApiModelProperty(position = 23, value = "预约开启标识[0:未开启,1开启]")
private int reserve;
@ApiModelProperty(value = "系统时间")
private String sysTime;
private static final GoblinMixAppDetailsVo obj = new GoblinMixAppDetailsVo();
......@@ -88,6 +89,7 @@ public class GoblinMixAppDetailsVo implements Serializable, Cloneable {
this.setSellPrice(source.getSellPrice());
this.setShelvesTime(source.getShelvesTime());
this.setReserve(source.getReserve());
this.setSysTime(DateUtil.getNowTime());
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