package com.nova.sankuai.domain.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * 机构匹配渠道配置 * @author weikangdi * @create 2022/3/31 */ @Data public class ChannelMechanismConfig { @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 mechanismId; }