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/04/11 */ @ApiModel(value = "H5渠道贷超关联表") @Data public class H5ChannelLoanMarket { @TableId @ApiModelProperty(value = "主键") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long id; @ApiModelProperty(value = "贷款超市Id") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long supermarketId; @ApiModelProperty(value = "渠道Id") @JsonFormat(shape = JsonFormat.Shape.STRING) private Long channelId; @ApiModelProperty(value = "是否启用:0--禁用,1--启用") private Integer enableFlag; @ApiModelProperty(value = "是否为限时抢") private Integer isTimeLimit; @ApiModelProperty(value = "是否为精选推荐") private Integer isFeatured; }