删除测试代码;

This commit is contained in:
2022-07-11 12:12:22 +08:00
parent 96d0f629cd
commit a538ac1dce
6 changed files with 0 additions and 498 deletions

View File

@@ -1,31 +0,0 @@
<?php
namespace app\admin\model;
use app\common\model\TimeModel;
class TestGoods extends TimeModel
{
protected $name = "test_goods";
protected $deleteTime = "delete_time";
public const SELECT_LIST_STATUS = ['0'=>'正常','1'=>'禁用',];
public const SELECT_LIST_TIME_STATUS = ['0'=>'未参加','1'=>'已开始','3'=>'已结束',];
public const SELECT_LIST_IS_RECOMMEND = ['0'=>'不推荐','1'=>'推荐',];
public const SELECT_LIST_SHOP_TYPE = ['taobao'=>'淘宝','jd'=>'京东',];
public function mallCate()
{
return $this->belongsTo('\app\admin\model\MallCate', 'cate_id', 'id');
}
}