feat: fix issues

This commit is contained in:
2026-03-22 21:54:16 +08:00
parent 0ae77ffbf8
commit d2a0648238
9 changed files with 11 additions and 11 deletions

View File

@@ -23,6 +23,7 @@ class IntImpPickUpDLVBean : Serializable {
var cashWeight: Double = 0.0 // 计费重量
var pkId: String = "" // 提货编号(提货单号)
var location: String = "" // 库位
var locationInStore: String = "" // 入库库位
var chargeTime: String = "" // 缴费时间(提取时间)
var dlvTime: String = "" // 出库时间
var goods: String = "" // 品名

View File

@@ -300,7 +300,7 @@ interface Api {
* 获取地区类型
*/
@POST("typeCode/countryType")
suspend fun getAreaTypeList(): DictListBean
suspend fun getCountryTypeList(): DictListBean
/**
* 获取国家代码

View File

@@ -457,14 +457,14 @@ object DictUtils {
/**
* 地区类型
*/
fun getAreaTypeList(
fun getCountryTypeList(
addAll: Boolean = true,
checkedValue: String? = null,
callBack: (List<KeyValue>) -> Unit
) {
launchCollect({
NetApply.api
.getAreaTypeList()
.getCountryTypeList()
}) {
onSuccess = {
handleCallBack(it, checkedValue, addAll, callBack)