feat: dev
This commit is contained in:
@@ -246,6 +246,7 @@ interface Constant {
|
||||
const val GjcInspectionActivity = "AppIntExpInspection" //收运检查
|
||||
const val GjcIntExpAssembleActivity = "AppIntExpAssemble" //出港组装
|
||||
const val GjcAssembleAllocateActivity = "AppIntExpAssembleAllocate" //组装分配
|
||||
const val GjcIntExpOutHandover = "AppIntExpOutHandover" //出库交接
|
||||
|
||||
/**
|
||||
* 国际进港
|
||||
|
||||
@@ -536,6 +536,28 @@ interface Api {
|
||||
@POST("IntExpAssemble/backfillWeight")
|
||||
suspend fun backfillIntExpAssembleWeight(@Body data: RequestBody): BaseResultBean<SimpleResultBean>
|
||||
|
||||
/**
|
||||
* 国际出港出库交接-分页查询
|
||||
* 接口路径: /IntExpOutHandover/pageQuery
|
||||
*/
|
||||
@POST("IntExpOutHandover/pageQuery")
|
||||
suspend fun getIntExpOutHandoverList(@Body data: RequestBody): BaseListBean<GjcUldUseBean>
|
||||
|
||||
/**
|
||||
* 国际出港出库交接-分页合计
|
||||
* 接口路径: /IntExpOutHandover/pageQueryTotal
|
||||
*/
|
||||
@POST("IntExpOutHandover/pageQueryTotal")
|
||||
suspend fun getIntExpOutHandoverTotal(@Body data: RequestBody): BaseResultBean<ManifestTotalDto>
|
||||
|
||||
/**
|
||||
* 国际出港出库交接-完成交接
|
||||
* 接口路径: /IntExpOutHandover/handover
|
||||
* @param data 请求参数:选中的ULD列表
|
||||
*/
|
||||
@POST("IntExpOutHandover/handover")
|
||||
suspend fun completeHandover(@Body data: RequestBody): BaseResultBean<Boolean>
|
||||
|
||||
/**
|
||||
* 国际出港移库-分页查询
|
||||
* 接口路径: /IntExpMove/pageQuery
|
||||
|
||||
@@ -142,6 +142,7 @@ object ARouterConstants {
|
||||
const val ACTIVITY_URL_INT_EXP_ASSEMBLE_START = "/gjc/IntExpAssembleStartActivity" //国际出港 开始组装
|
||||
const val ACTIVITY_URL_INT_EXP_MOVE = "/gjc/IntExpMoveActivity" //国际出港 出港移库
|
||||
const val ACTIVITY_URL_GJC_ASSEMBLE_ALLOCATE = "/gjc/GjcAssembleAllocateActivity" //国际出港 组装分配
|
||||
const val ACTIVITY_URL_INT_EXP_OUT_HANDOVER = "/gjc/IntExpOutHandoverActivity" //国际出港 出库交接
|
||||
|
||||
///////////////// 国际进港模块
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user