huliguo
10 小时以前 60e726c81966b042db4f7b108d06bd36109794de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}