ab
2024-11-04 09d882262f530ded672f1c01fb65a1fefa00d52d
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
27
28
29
30
31
32
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 数据同步渠道配置
 *
 * @author weikangdi
 * @create 2022/2/21
 */
@ApiModel("数据同步渠道配置")
@Data
public class SyncChannelConfig {
 
    @ApiModelProperty(value = "主键")
    @TableId
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "渠道Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long channelId;
 
    @ApiModelProperty(value = "同步配置Id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long syncConfigId;
 
}