www_fpvone_cn/application/admin/model/LeagueIntegral.php

29 lines
399 B
PHP

<?php
namespace app\admin\model;
use think\Model;
class LeagueIntegral extends Model
{
// 表名
protected $name = 'league_integral';
// 自动写入时间戳字段
// protected $autoWriteTimestamp = 'integer';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = false;
protected $deleteTime = false;
}