14 lines
188 B
PHP
14 lines
188 B
PHP
<?php
|
|
|
|
namespace vcard\order\structure;
|
|
|
|
class eVcardOrderStatus {
|
|
|
|
const NEW = 1;
|
|
const ACCEPT = 2;
|
|
const WORK = 3;
|
|
const SUCCESS = -2;
|
|
const BAD = -1;
|
|
|
|
}
|