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 package com.img.rabbit.bean.local
data class ClothingBean( data class ClothingBean(
//衣服索引(区分男女) val index: Int, //衣服索引(区分男女)
val index: Int, val id: Int, //衣服id不区分男女类别
//衣服id不区分男女类别
val id: Int,
val icon: Int, val icon: Int,
val clothing: Int? =null, val clothing: Int? =null,
val title: String val title: String

View File

@ -2,20 +2,18 @@ package com.img.rabbit.config
object Constants { object Constants {
const val RELEASE_BASE_URL = "https://jitutu.batiao8.com" //release 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 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 privacyUrl = "https://jitutu.batiao8.com/static/policy-jietutu/privacy-ios.html"//隐私政策
//const val getuiAppId = "40qbPjPkYs7TnVAYCX0Ig6"//个推appid (gradle.properties) //const val getuiAppId = "40qbPjPkYs7TnVAYCX0Ig6"//个推appid (gradle.properties)
const val WxAppId = "wx7d1a7d1507482cef"// 微信APPID const val WxAppId = "wx7d1a7d1507482cef" // 微信APPID
const val WxSecret = "5264c353296db25405fc29e43c40d3a5"//微信secret const val WxSecret = "5264c353296db25405fc29e43c40d3a5" //微信secret
const val UmengAppkey = "69a641119a7f3764887cd287"// 友盟appKey const val UmengAppkey = "69a641119a7f3764887cd287" // 友盟appKey
const val AppId = "10058"//appid const val AppId = "10058" //appid(公司AppID)
//解密 const val AESDecrypt = "e4rOtnF8tJjtHO7ecZeJHN1rapED5ImB" //解密
const val AESDecrypt = "e4rOtnF8tJjtHO7ecZeJHN1rapED5ImB" const val Signature = "xn08hYoizXhZ1zHP8DVqfCm2yHxPmhil" //加密字符
//加密字符
const val Signature = "xn08hYoizXhZ1zHP8DVqfCm2yHxPmhil"
} }