/*
 * @Descripttion: 
 * @version: 1.0.0
 * @Author: YeeChan
 * @Date: 2020-07-09 18:54:38
 */

/**
 * 网络的相关接口配置
 */
export default class NetConfig {
    public static readonly serverUrl_custom: string = "https://javaapi.renyouwangluo.cn";
    //public static readonly serverUrl_test_custom: string = "https://javaapi.test.renyouwangluo.cn";

    public static readonly Login_custom: string = "/api/user/login";
    public static readonly SaveGameData_custom: string = "/api/user/game/data/write";
    public static readonly GetUser_custom = "/api/user/game/data/read";
    /* 用来对IP地址进行屏蔽的接口地址,可以使用接口的返回值让某些广告逻辑在微信的审核地区(广州)发生变化 */
    public static readonly IpBlock_custom = "/api/user/ip/select";
    public static readonly reportExport_custom = "/api/share/getwaibuad";
    public static readonly reportImport_custom = "/api/share/getzjadml";
    public static readonly getuserip_custom = "/api/user/ip";
    public static readonly signin_custom = "/api/user/sign";//签到
    public static readonly Get_ServerTime_custom = "/api/share/gettime"// 服务器当前的时间戳
    public static readonly userScanCode_custom = "/api/user/scan/code" //上报2
    //抖音上传统计报告
    public static readonly ttReportLaunchChannel_custom = "https://javareport.renyouwangluo.cn/api/data/tt/report"
}