You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
527 B
PHTML
24 lines
527 B
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
class FrequencyConst {
|
||
|
|
||
|
const actionDecodeOrderConsignee = 'decodeOrderConsignee';
|
||
|
|
||
|
const decodeConsigneeWarningFiveSecondsLimit = 5;
|
||
|
|
||
|
const decodeConsigneeWarningDayLimit = 3;
|
||
|
|
||
|
const decodeConsigneeWarningDayPercentLimit = 50;
|
||
|
|
||
|
const shopDecryptConsigneeDefaultRate = 100;
|
||
|
|
||
|
const grayscaleTestPurchasePddddkUrlDefaultRate = 10;
|
||
|
|
||
|
public static function getDefaultValidOrderDecryptRateLimit() {
|
||
|
return [
|
||
|
'outstorage' => 10,
|
||
|
'purchase' => 30,
|
||
|
];
|
||
|
}
|
||
|
|
||
|
}
|