进件状态
This commit is contained in:
@@ -25,15 +25,35 @@ public interface PayCst {
|
|||||||
* 进件状态
|
* 进件状态
|
||||||
*/
|
*/
|
||||||
class EntryStatus {
|
class EntryStatus {
|
||||||
|
/**
|
||||||
|
* 待提交
|
||||||
|
*/
|
||||||
|
public static final String WAIT = "WAIT";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 待处理
|
* 待处理
|
||||||
*/
|
*/
|
||||||
public static final String INIT = "INIT";
|
public static final String INIT = "INIT";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审核中
|
||||||
|
*/
|
||||||
|
public static final String AUDIT = "AUDIT";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 待签约
|
||||||
|
*/
|
||||||
|
public static final String SIGN = "SIGN";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 已完成
|
||||||
|
*/
|
||||||
|
public static final String FINISH = "FINISH";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 失败
|
* 失败
|
||||||
*/
|
*/
|
||||||
public static final String FAIL = "FAIL";
|
public static final String REJECTED = "REJECTED";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user