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;
|
|
}
|