Sunshine
2024-11-05 8f7985d7764a0aad24bd593ac5ea47b7fc290961
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 lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 联登跳转配置
 */
@Data
public class UnionloginRelay implements Serializable {
 
    private Integer id;
 
    private String channelCodePattern;
 
    private String appId;
 
    private String appIdOut;
 
    private String distUrl;
 
    private String publicKey;
 
    private Date createTime;
 
    private Date updateTime;
 
    private String notes;
 
    private Integer enable;
}