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.OssPathConst.php

26 lines
961 B
PHP

<?php
class OssPathConst {
const pddDdcOssTrustIpMapPath = 'pdd/ddc/trust_ip_map.txt';
const pddDdcOssTrustAdminMapPath = 'pdd/ddc/trust_admin_map.txt';
public static function getSourceCategoryOssPath($mallId) {
return sprintf('move/source_category_map/%s.txt', $mallId);
}
public static function getMoveGroupFetchBankDetailList($moveGroupTaskId, $pageNo) {
return sprintf('move/fetch_bank_detail_list/%s/%s.txt', $moveGroupTaskId, $pageNo);
}
public static function getMoveTargetFlashKey($mallId) {
return sprintf('move/move_target_flash_key/%s.txt', $mallId);
}
public static function getPddDdcOssRbacAdminAuthKey($platform, $mallId) {
return sprintf('pdd/ddc/rbac_admin_auth_%s_%s.txt', $platform, $mallId);
}
public static function getPddDdcOssRbacAllPermissionNameMapPath($platform) {
return sprintf('pdd/ddc/rbac_all_permission_name_map_%s.txt', $platform);
}
}