1
Sunshine
2024-11-05 1ec0f818f512186b3af02637906632264fe97119
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
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 Lilinhong
 * @Date 2022/6/17 14:10
 */
@Data
@ApiModel(value = "渠道方撞库联登配置")
public class UnionloginProduct {
 
    @TableId
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "渠道方appId")
    private String appId;
 
    @ApiModelProperty(value = "渠道方名称")
    private String captitalName;
 
    @ApiModelProperty(value = "渠道方公钥")
    private String captitalPublicKey;
 
    @ApiModelProperty(value = "渠道方域名")
    private String captitalUrl;
}