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.
pdd-order-api/app/libs/const/class.ExportConst.php

18 lines
513 B
PHP

<?php
class ExportConst {
const exportTypeIsSku = 'sku';
const exportTypeIsSpu = 'spu';
const exportTypeIsUnsalable = 'unsalable';
public static function getExportTypeName($exportType) {
$exportTypeNameMap = [
ExportConst::exportTypeIsSku => 'SKU导出',
ExportConst::exportTypeIsSpu => 'SPU导出',
ExportConst::exportTypeIsUnsalable => '滞销商品导出',
];
return !empty($exportTypeNameMap[$exportType]) ? $exportTypeNameMap[$exportType] : '';
}
const buildDataQueueGoodsSize = 50;
}