parent
af178ff82e
commit
b70f553c2b
|
|
@ -1,10 +1,8 @@
|
|||
package com.img.rabbit.bean.local
|
||||
|
||||
data class ClothingBean(
|
||||
//衣服索引(区分男女)
|
||||
val index: Int,
|
||||
//衣服id(不区分男女类别)
|
||||
val id: Int,
|
||||
val index: Int, //衣服索引(区分男女)
|
||||
val id: Int, //衣服id(不区分男女类别)
|
||||
val icon: Int,
|
||||
val clothing: Int? =null,
|
||||
val title: String
|
||||
|
|
|
|||
|
|
@ -1,21 +1,19 @@
|
|||
package com.img.rabbit.config
|
||||
|
||||
object Constants {
|
||||
const val RELEASE_BASE_URL = "https://jitutu.batiao8.com" //release
|
||||
const val DEBUG_BASE_URL = "https://jitutu.batiao8.com"
|
||||
const val RELEASE_BASE_URL = "https://jitutu.batiao8.com" //release
|
||||
const val DEBUG_BASE_URL = "https://jitutu.batiao8.com" //debug
|
||||
const val LOG_REQUEST = "RabbitRequest"
|
||||
const val agreementUrl = "https://jitutu.batiao8.com/static/policy-jietutu/user.html"//用户协议
|
||||
const val agreementUrl = "https://jitutu.batiao8.com/static/policy-jietutu/user.html" //用户协议
|
||||
const val privacyUrl = "https://jitutu.batiao8.com/static/policy-jietutu/privacy-ios.html"//隐私政策
|
||||
|
||||
//const val getuiAppId = "40qbPjPkYs7TnVAYCX0Ig6"//个推appid (gradle.properties)
|
||||
const val WxAppId = "wx7d1a7d1507482cef"// 微信APPID
|
||||
const val WxSecret = "5264c353296db25405fc29e43c40d3a5"//微信secret
|
||||
const val UmengAppkey = "69a641119a7f3764887cd287"// 友盟appKey
|
||||
const val WxAppId = "wx7d1a7d1507482cef" // 微信APPID
|
||||
const val WxSecret = "5264c353296db25405fc29e43c40d3a5" //微信secret
|
||||
const val UmengAppkey = "69a641119a7f3764887cd287" // 友盟appKey
|
||||
|
||||
const val AppId = "10058"//appid
|
||||
const val AppId = "10058" //appid(公司AppID)
|
||||
|
||||
//解密
|
||||
const val AESDecrypt = "e4rOtnF8tJjtHO7ecZeJHN1rapED5ImB"
|
||||
//加密字符
|
||||
const val Signature = "xn08hYoizXhZ1zHP8DVqfCm2yHxPmhil"
|
||||
const val AESDecrypt = "e4rOtnF8tJjtHO7ecZeJHN1rapED5ImB" //解密
|
||||
const val Signature = "xn08hYoizXhZ1zHP8DVqfCm2yHxPmhil" //加密字符
|
||||
}
|
||||
Loading…
Reference in New Issue