|
@@ -23,12 +23,12 @@ class InquiryRelayDetail extends Model |
|
@@ -23,12 +23,12 @@ class InquiryRelayDetail extends Model |
|
23
|
protected $table = 'gl_inquiry_relay_detail';
|
23
|
protected $table = 'gl_inquiry_relay_detail';
|
|
24
|
|
24
|
|
|
25
|
/**
|
25
|
/**
|
|
26
|
- * 任务状态, 0:待处理,1:处理中,2:处理成功,3:抛弃数据,9:处理失败
|
26
|
+ * 任务状态, 0:待处理,1:处理中,2:待转发,3:转发成功,9:转发失败
|
|
27
|
*/
|
27
|
*/
|
|
28
|
const STATUS_INIT = 0;
|
28
|
const STATUS_INIT = 0;
|
|
29
|
const STATUS_PEND = 1;
|
29
|
const STATUS_PEND = 1;
|
|
30
|
const STATUS_SUCCESS = 2;
|
30
|
const STATUS_SUCCESS = 2;
|
|
31
|
- const STATUS_FORGO = 3;
|
31
|
+ const STATUS_SEND = 3;
|
|
32
|
const STATUS_FAIL = 9;
|
32
|
const STATUS_FAIL = 9;
|
|
33
|
|
33
|
|
|
34
|
/**
|
34
|
/**
|
|
@@ -40,9 +40,9 @@ class InquiryRelayDetail extends Model |
|
@@ -40,9 +40,9 @@ class InquiryRelayDetail extends Model |
|
40
|
return [
|
40
|
return [
|
|
41
|
self::STATUS_INIT => '待处理',
|
41
|
self::STATUS_INIT => '待处理',
|
|
42
|
self::STATUS_PEND => '处理中',
|
42
|
self::STATUS_PEND => '处理中',
|
|
43
|
- self::STATUS_SUCCESS => '处理成功',
|
|
|
|
44
|
- self::STATUS_FORGO => '抛弃数据',
|
|
|
|
45
|
- self::STATUS_FAIL => '处理失败',
|
43
|
+ self::STATUS_SUCCESS => '待转发',
|
|
|
|
44
|
+ self::STATUS_SEND => '转发成功',
|
|
|
|
45
|
+ self::STATUS_FAIL => '转发失败',
|
|
46
|
];
|
46
|
];
|
|
47
|
}
|
47
|
}
|
|
48
|
|
48
|
|