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.
23 lines
600 B
PHTML
23 lines
600 B
PHTML
11 months ago
|
<?php
|
||
|
class BanScanConst {
|
||
|
const pictureScanWaitCount = 'wait_count';
|
||
|
const pictureScanWaitPay = 'wait_pay';
|
||
|
const pictureScanPaid = 'paid';
|
||
|
const pictureScanPaidFail = 'paid_fail';
|
||
|
const pictureScanPayCancel = 'pay_cancel';
|
||
|
|
||
|
const scanTypeText = 'text';
|
||
|
const scanTypeDescImg = 'descImg';
|
||
|
const scanTypeMainImg = 'mainImg';
|
||
|
|
||
|
const minImageUnitCost = 0.03;
|
||
|
const maxImageUnitCost = 0.06;
|
||
|
|
||
|
const minImageMaxSize = 307200; //300*1024
|
||
|
const imageSizeNotKnowDefaultVal = -1;
|
||
|
|
||
|
const taskBufferQueueMaxCount = 1600;
|
||
|
|
||
|
const banWordFieldDesc = 'desc';
|
||
|
const banWordFieldSpec = 'spec';
|
||
|
}
|