You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

49 lines
727 B

<?php
namespace App\Constants\v3;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
/**
* @Constants
*/
class Store extends AbstractConstants
{
/**
* @Message("营业中")
*/
const IS_OPEN_YES = 1;
/**
* @Message("歇业中")
*/
const IS_OPEN_NO = 2;
/**
* @Message("入驻审核中")
*/
const STATUS_EXAMINING = 1;
/**
* @Message("入驻成功")
*/
const STATUS_PASS = 2;
/**
* @Message("入驻被拒")
*/
const STATUS_REFUSE = 3;
/**
* @Message("入驻已过期")
*/
const STATUS_EXPIRED = 4;
/**
* @Message("商家已休息")
*/
const IS_REST_NO = 0;
}