parent
df5f70bfab
commit
cf518aeda9
22 changed files with 107 additions and 34 deletions
@ -0,0 +1,8 @@ |
|||||||
|
StoreFile = release.jks |
||||||
|
StorePassword = com.shsx.survey.2024 |
||||||
|
KeyAlias = shsx |
||||||
|
KeyPassword = com.shsx.survey.2024 |
||||||
|
#StoreFile = heike.keystore |
||||||
|
#StorePassword = heike6868 |
||||||
|
#KeyAlias = heike |
||||||
|
#KeyPassword = heike6868 |
@ -1,3 +1,6 @@ |
|||||||
package com.project.survey.logic.bean |
package com.project.survey.logic.bean |
||||||
|
|
||||||
|
import androidx.annotation.Keep |
||||||
|
|
||||||
|
@Keep |
||||||
data class ListResult<T>(val rows: List<T>, val totalCount: Int) |
data class ListResult<T>(val rows: List<T>, val totalCount: Int) |
||||||
|
@ -1,4 +1,7 @@ |
|||||||
package com.project.survey.model |
package com.project.survey.model |
||||||
|
|
||||||
|
import androidx.annotation.Keep |
||||||
|
|
||||||
|
@Keep |
||||||
class ControlNetListBean { |
class ControlNetListBean { |
||||||
} |
} |
@ -1,4 +1,7 @@ |
|||||||
package com.project.survey.model |
package com.project.survey.model |
||||||
|
|
||||||
|
import androidx.annotation.Keep |
||||||
|
|
||||||
|
@Keep |
||||||
class LoftingListBean { |
class LoftingListBean { |
||||||
} |
} |
@ -1,4 +1,7 @@ |
|||||||
package com.project.survey.model |
package com.project.survey.model |
||||||
|
|
||||||
|
import androidx.annotation.Keep |
||||||
|
|
||||||
|
@Keep |
||||||
class PointMeasureListBean { |
class PointMeasureListBean { |
||||||
} |
} |
@ -1,3 +1,6 @@ |
|||||||
package com.project.survey.network |
package com.project.survey.network |
||||||
|
|
||||||
|
import androidx.annotation.Keep |
||||||
|
|
||||||
|
@Keep |
||||||
data class HttpResult<T>(val code: String, val message: String, val data: T, val success: Boolean) |
data class HttpResult<T>(val code: String, val message: String, val data: T, val success: Boolean) |
||||||
|
Loading…
Reference in new issue