2023-01-29 10:26:52 +08:00

13 lines
178 B
PHP

<?php
namespace app\common\newmodel;
use think\Model;
class HistoryModel extends Model
{
protected $table = 'cps_history';
protected $resultSetType = 'collection';
}