Commit 87bfb286 authored by 周健威's avatar 周健威

车辆相关和优惠券相关

parent 8f71d523
package com.xxfc.platform.activity.vo;
import com.xxfc.platform.activity.entity.Coupon;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
......@@ -13,7 +14,7 @@ import java.math.BigDecimal;
* @data 2019/7/23 10:55
*/
@Data
public class CouponPagVo {
public class CouponPagVo extends Coupon {
@ApiModelProperty("主键id")
......@@ -56,10 +57,17 @@ public class CouponPagVo {
private Long crtTime;
/**
* 是否可领取;0-否;1-是
* 发放开始时间
*/
@Column(name = "is_led")
@ApiModelProperty(value = "是否可领取;0-否;1-是")
private Integer isLed;
@Column(name = "start_time")
@ApiModelProperty(value = "发放开始时间")
private Long startTime;
/**
* 发放结束时间
*/
@Column(name = "end_time")
@ApiModelProperty(value = "发放结束时间")
private Long endTime;
}
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