Files
cunkebao_v3/Server/application/chukebao/model/Material.php

17 lines
309 B
PHP
Raw Normal View History

2025-09-25 17:52:56 +08:00
<?php
namespace app\chukebao\model;
use think\Model;
class Material extends Model
{
protected $pk = 'id';
protected $name = 'kf_material';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
protected $updateTime = 'updateTime';
}