Files

23 lines
334 B
PHP
Raw Permalink Normal View History

<?php
namespace app\model\agent;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
class PromoterApply extends BaseModel
{
use ModelTrait;
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'promoter_apply';
}