- 在 app/functions.php 中添加 getOrderTypeName 函数,用于获取订单类型名称 - 在 config/middleware.php 中添加 psi 中间件配置,包括跨域中间件、初始化中间件、登录验证中间件、权限认证中间件和操作日志记录中间件
23 lines
421 B
PHP
23 lines
421 B
PHP
<?php
|
|
|
|
namespace app\common\model\system_store;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
/**
|
|
* 门店列表模型
|
|
* Class SystemStore
|
|
* @package app\common\model\system_store
|
|
*/
|
|
class SystemStore extends BaseModel
|
|
{
|
|
use SoftDelete;
|
|
protected $name = 'system_store';
|
|
protected $deleteTime = 'delete_time';
|
|
// 不生成该表的日志
|
|
public $doNotRecordLog = true;
|
|
|
|
|
|
} |