KDCertification.java 833 Bytes
package com.huaheng.pc.config.KDCertification.domain;

import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

/**
 * @ClassName Certification 快递认证信息
 * @Description TODO
 * @Author Administrator
 * @Date 2020/2/2910:46
 */

@Data
@TableName(value = "kdcertification")
public class KDCertification {

    private String id;

    @TableField(value = "accessToken")
    private String accessToken;
    @TableField(value = "refreshToken")
    private String refreshToken;
    @TableField(value = "redirectUrl")
    private String redirectUrl;
    @TableField(value = "warehouseCode")
    private String warehouseCode;
    @TableField(value = "appKey")
    private String appKey;
    @TableField(value = "appSecret")
    private String appSecret;


}