40 lines
606 B
PHP
40 lines
606 B
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model\system\merchant;
|
|
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
/**
|
|
* Class MerchantCategory
|
|
* @package app\common\model\system\merchant
|
|
* @author xaboy
|
|
* @day 2020-05-06
|
|
*/
|
|
class MerchantCategory extends BaseModel
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tablePk(): string
|
|
{
|
|
return 'merchant_category_id';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function tableName(): string
|
|
{
|
|
return 'merchant_category';
|
|
}
|
|
}
|