sync
This commit is contained in:
shenzuqiang 2026-03-17 16:25:44 +08:00
parent af178ff82e
commit b70f553c2b
2 changed files with 11 additions and 15 deletions

View File

@ -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

View File

@ -2,7 +2,7 @@ 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 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 privacyUrl = "https://jitutu.batiao8.com/static/policy-jietutu/privacy-ios.html"//隐私政策
@ -12,10 +12,8 @@ object Constants {
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" //加密字符
}