chen.lin
19 小时以前 c81fc5e2a4f4153be2bb8602ed14a0743e6ecd29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.vincent.rsf.server.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vincent.rsf.server.manager.entity.CloudWmsNotifyLog;
 
import java.util.List;
 
/** 云仓上报待办 */
public interface CloudWmsNotifyLogService extends IService<CloudWmsNotifyLog> {
 
    List<CloudWmsNotifyLog> listPending(int limit, int maxRetry);
 
    void fillFromConfig(CloudWmsNotifyLog log);
 
    /** 上报类型:入出库结果(系统配置优先,缺省 IN_OUT_RESULT) */
    String getReportTypeInOutResult();
 
    /** 上报类型:库存调整(系统配置优先,缺省 INVENTORY_ADJUST) */
    String getReportTypeInventoryAdjust();
 
    /** 通知状态:待通知(系统配置优先,缺省 0) */
    int getNotifyStatusPending();
 
    /** 通知状态:已成功(系统配置优先,缺省 1) */
    int getNotifyStatusSuccess();
 
    /** 通知状态:失败(系统配置优先,缺省 2) */
    int getNotifyStatusFail();
}