自采入库、新增物品、上传图片、全部收货接口调试,其它逻辑优化

This commit is contained in:
2025-10-29 20:08:12 +08:00
parent 0611005d04
commit 7930ba0cd1
24 changed files with 651 additions and 306 deletions
@@ -15,7 +15,7 @@ data class ApiResponse<T>(
val msg: String? = "",
val data: T? = null
) {
fun isSuccess(): Boolean = code == "00000"
fun isSuccess(): Boolean = ("00000" == code)
val result: T?
get() = data