Air
2024-11-04 29c405353029f033e187e8dc033b93385365ee43
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
33
34
35
36
37
38
39
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 2021/12/27
 */
@ApiModel(value = "渠道贷超关联表")
@Data
public class ChannelSupermarket {
 
    @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;
 
}