2
sunshine
2024-11-05 69fd283ab500241947e8eac9192c39f4a6092b51
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/11/16
 */
@ApiModel(value = "渠道日志")
@Data
public class ChannelLog {
 
    @ApiModelProperty(value = "渠道类型-推入")
    public static final int IMPORT = 0;
    @ApiModelProperty(value = "渠道类型-推出")
    public static final int EXPORT = 1;
 
    @ApiModelProperty(value = "渠道推送状态-成功")
    public static final int SUCCESS = 1;
    @ApiModelProperty(value = "渠道推送状态-失败")
    public static final int FAIL = 0;
 
    @TableId
    @ApiModelProperty(value = "主键")
    private Long id;
 
    @ApiModelProperty(value = "渠道名")
    private String name;
 
    @ApiModelProperty(value = "客户记录id")
    private Long customerRecordId;
 
    @ApiModelProperty(value = "渠道类型 0-进 1-出")
    private Integer type;
 
    @ApiModelProperty(value = "渠道推送状态 0-失败 1-成功")
    private Integer status;
 
    @ApiModelProperty(value = "推送结果")
    private String result;
 
    @ApiModelProperty(value = "导入对象")
    private String importObjects;
 
    @ApiModelProperty(value = "推送消息")
    private String message;
 
    @ApiModelProperty(value = "入口渠道代码")
    private Integer source;
 
    @ApiModelProperty(value = "贷款超市Id")
    private Long recordId;
 
    @ApiModelProperty(value = "出口渠道代码")
    private Integer exportSource;
 
    @ApiModelProperty(value = "创建时间")
    private Date creationDate;
}