Files
webman-buildadmin/app/common/model/ChannelAdminShare.php
2026-04-17 16:46:38 +08:00

21 lines
362 B
PHP

<?php
namespace app\common\model;
use support\think\Model;
class ChannelAdminShare extends Model
{
protected $name = 'channel_admin_share';
protected $autoWriteTimestamp = true;
protected $type = [
'create_time' => 'integer',
'update_time' => 'integer',
'share_rate' => 'string',
'status' => 'integer',
];
}