Files
hyperf_service/app/Constants/Common/OssObjectCode.php
2024-11-12 11:14:48 +08:00

19 lines
312 B
PHP

<?php
namespace App\Constants\Common;
class OssObjectCode
{
/**
* 状态 1=有效 2=无效
*/
const int ENABLE = 1;
const int DISABLE = 2;
/**
* 类型 1=图片 2=音频 3=视频
*/
const int TYPE_IMAGE = 1;
const int TYPE_AUDIO = 2;
const int TYPE_VIDEO = 3;
}