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.
23 lines
353 B
23 lines
353 B
<?php
|
|
|
|
namespace app\api\model\dealer;
|
|
|
|
use app\common\model\dealer\Capital as CapitalModel;
|
|
|
|
/**
|
|
* 分销商资金明细模型
|
|
* Class Apply
|
|
* @package app\api\model\dealer
|
|
*/
|
|
class Capital extends CapitalModel
|
|
{
|
|
/**
|
|
* 隐藏字段
|
|
* @var array
|
|
*/
|
|
protected $hidden = [
|
|
'create_time',
|
|
'update_time',
|
|
];
|
|
|
|
}
|