123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace app\common\constant;
- /**
- * 呈批常量类
- */
- class OfferConstant
- {
- // 呈批类型:1=采购类呈批,2=非采购类呈批
- const TYPE_1 = '1';
- const TYPE_2 = '2';
- public static function get_type_list()
- {
- return [
- self::TYPE_1 => '采购类呈批',
- self::TYPE_2 => '非采购类呈批',
- ];
- }
- // 缓急程度:1=普通,2=紧急,3=特急
- const DEGREE_1 = '1';
- const DEGREE_2 = '2';
- const DEGREE_3 = '3';
- public static function get_degree_list()
- {
- return [
- self::DEGREE_1 => '普通',
- self::DEGREE_2 => '紧急',
- self::DEGREE_3 => '特急',
- ];
- }
- }
|