package com.ruoyi.system.domain.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class MgtOneClinkSyncPageVO {
|
@ApiModelProperty(value = "同步id")
|
private Integer syncingId;
|
@ApiModelProperty(value = "标题")
|
private String syncingName;
|
@ApiModelProperty(value = "封面图url")
|
private String coverUrl;
|
@ApiModelProperty(value = "详情图,多个逗号分隔")
|
private String detailsPicture;
|
@ApiModelProperty(value = "领券1开2关")
|
private Integer platformCouponFlag;
|
@ApiModelProperty(value = "生日卡1开2关")
|
private Integer platformBirthdayFlag;
|
@ApiModelProperty(value = "同步门店数")
|
private Integer shopNum;
|
@ApiModelProperty(value = "最近一次同步时间")
|
private Date syncingTime;
|
}
|